aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/layout.tsx')
-rw-r--r--src/app/layout.tsx29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
new file mode 100644
index 0000000..8e5ca2d
--- /dev/null
+++ b/src/app/layout.tsx
@@ -0,0 +1,29 @@
+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 (
+ <html lang="en">
+ <head>
+ <link
+ href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
+ rel="stylesheet"
+ />
+ </head>
+ <body className="font-sans antialiased">
+ {children}
+ <Toaster />
+ </body>
+ </html>
+ );
+} \ No newline at end of file