diff --git a/src/app/invest/page.tsx b/src/app/invest/page.tsx index 3353708..b9ac22e 100644 --- a/src/app/invest/page.tsx +++ b/src/app/invest/page.tsx @@ -18,7 +18,6 @@ import { ShareIcon, StarIcon } from "lucide-react"; import { Toaster, toast } from "react-hot-toast"; import useSession from "@/lib/supabase/useSession"; import { redirect } from "next/navigation"; -import { Skeleton } from "@/components/ui/skeleton"; import { Tooltip, TooltipContent, diff --git a/src/app/notification/page.tsx b/src/app/notification/page.tsx new file mode 100644 index 0000000..e4433c5 --- /dev/null +++ b/src/app/notification/page.tsx @@ -0,0 +1,28 @@ +"use client"; + +import { Card, CardContent } from "@/components/ui/card"; + +export default function Notification() { + const sampleNotifications = [ + { message: "New message from John Doe", time: "5 minutes ago" }, + { message: "Your order has been shipped", time: "2 hours ago" }, + { message: "Meeting reminder: Team sync at 3 PM", time: "1 day ago" }, + ]; + return ( +
{props.description}