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, 0 insertions, 29 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
deleted file mode 100644
index 8e5ca2d..0000000
--- a/src/app/layout.tsx
+++ /dev/null
@@ -1,29 +0,0 @@
-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