aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswa Kalyan Bhuyan <[email protected]> 2025-05-28 16:37:57 +0530
committerLibravatarLibravatar Biswa Kalyan Bhuyan <[email protected]> 2025-05-28 16:37:57 +0530
commit7b85f1e2c3717ddd9eee0e668e3b4d48139e2407 (patch)
treef9b4e2d999f500d712caeacdb4dad782a9957735
parentfca2c25e12f5891e61f92e08815ddaa554f077d1 (diff)
downloadblcklst-7b85f1e2c3717ddd9eee0e668e3b4d48139e2407.tar.gz
blcklst-7b85f1e2c3717ddd9eee0e668e3b4d48139e2407.tar.bz2
blcklst-7b85f1e2c3717ddd9eee0e668e3b4d48139e2407.zip
fix: deleted previous src dir in the project root dir
-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