import type { Metadata } from "next"; import "./globals.css"; import { Toaster } from "@/components/ui/sonner"; export const metadata: Metadata = { title: "blcklst - Modern Fashion Brand", description: "not everyone gets blcklsted - discover carefully curated fashion pieces that define modern elegance.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }