From d03b3ab10ea65a6120e9286222e9e2886656fbfb Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 19:26:54 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1387 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1387 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..6e378d3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1387 @@ +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./globals.css"; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata: Metadata = { + title: "Emaan Center Feroza - Premium Clothing Store", description: "Discover high-quality, trendy clothing at Emaan Center Feroza. Excellent service, fast delivery, and authentic customer reviews. Shop premium fashion now."}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} +