diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2022bb8..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Fashion Club - Treasure Store with Everything You Need", description: "Discover thousands of products in one place: fashion, home essentials, electronics & accessories at unbeatable prices. Your treasure hunt starts here.", keywords: "fashion store, home essentials, affordable shopping, Cosenza retail, student shopping, bazaar store, treasure hunt shopping", openGraph: { - title: "Fashion Club - The Treasure Store", description: "Everything you need at incredible prices. Fashion, home, electronics, and thousands of everyday finds.", type: "website", siteName: "Fashion Club", images: [ - { - url: "http://img.b2bpic.net/free-photo/paper-bags-standing-shop-floor_23-2147688410.jpg", alt: "Fashion Club store interior - thousands of products"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Fashion Club - The Treasure Store", description: "Discover everything you need: fashion, home, electronics at unbeatable prices.", images: ["http://img.b2bpic.net/free-photo/paper-bags-standing-shop-floor_23-2147688410.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}