diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e6543e6..869e6fa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,20 @@ import type { Metadata } from "next"; -import { Figtree } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "CS GO Cups - Premium Drinkware Collection", description: "Discover premium quality cups and mugs for every occasion. Shop our curated collection of elegant, durable drinkware designed for coffee lovers.", keywords: "premium cups, coffee mugs, drinkware, ceramic cups, travel mugs, insulated cups", openGraph: { - title: "CS GO Cups - Premium Drinkware", description: "Explore our exclusive collection of high-quality cups and mugs for every lifestyle.", siteName: "CS GO Cups", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/front-view-cup-milk-with-crackers-sunglasses-grey-surface_140725-20359.jpg", alt: "CS GO Premium Cups Collection" - } - ] - }, - twitter: { - card: "summary_large_image", title: "CS GO Cups - Premium Drinkware", description: "Discover premium quality cups and mugs for every occasion.", images: ["http://img.b2bpic.net/free-photo/front-view-cup-milk-with-crackers-sunglasses-grey-surface_140725-20359.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "CS GO Cups - Premium Drinkware Collection", description: "Discover our curated collection of high-quality drinkware designed for style and functionality. From morning coffee to evening tea, we have the perfect cup for you."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -