diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2bf8961..b6bba70 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1417 +1,27 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Originals - Trendy Clothes for Men & Boys | Best Quality & Prices", description: "Shop authentic, trendy clothing for men and boys at unbeatable prices. 100% genuine products with best quality. Join 1000+ satisfied customers.", keywords: "men's fashion, boys clothing, branded wear, trendy clothes, best prices, quality apparel, casual fashion, authentic products", metadataBase: new URL("https://originals-store.com"), - alternates: { - canonical: "https://originals-store.com"}, - openGraph: { - title: "Originals - Trendy Clothes for Men & Boys", description: "Discover authentic, high-quality fashion at the best prices. Shop our latest collection of trendy clothing for men and boys.", url: "https://originals-store.com", siteName: "Originals Branded Store", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/medium-shot-friends-posing-night-with-flash_23-2150204455.jpg", alt: "Originals store collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Originals - Trendy Clothes for Men & Boys", description: "Shop authentic, trendy clothing at best prices. Premium quality, genuine brands.", images: ["http://img.b2bpic.net/free-photo/medium-shot-friends-posing-night-with-flash_23-2150204455.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Originals - Authentic Fashion Store", description: "Shop authentic, high-quality apparel at unbeatable prices. Discover the latest trendy clothes for men and boys."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -