import React, { useState, useEffect } from "react" import Cookies from "js-cookie" import { Card, CardContent, CardFooter, CardHeader, CardTitle } from "@/components/ui/card" import { Button } from "@/components/ui/button" import { Check } from "lucide-react" import Link from "next/link" export const WelcomeCard = () => { const [visible, setVisible] = useState(true) useEffect(() => { const isRead = Cookies.get("welcome-read") if (isRead === "true") { setVisible(false) } }, []) const handleMarkAsRead = () => { Cookies.set("welcome-read", "true") setVisible(false) } if (!visible) return null return ( Welcome to your dashboard!

Thank you for signing up! Here you can manage your account and the services available to you.

We’re thrilled to have you on board, and if you need anything, don’t hesitate to contact our support team!

That’s all, have a great day!

) }