diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 24b0382..ce6304d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Luxury Watches | Timely Watches - Premium Timepieces", description: "Discover exquisite luxury watches crafted with Swiss precision. Shop our collections of premium timepieces, from classic heritage to modern minimalist designs.", keywords: "luxury watches, Swiss watches, premium timepieces, designer watches, chronograph, mechanical watches", metadataBase: new URL("https://timelywatches.com"), - alternates: { - canonical: "https://timelywatches.com"}, - openGraph: { - title: "Timely Watches - Luxury Timepieces Crafted to Perfection", description: "Explore our exclusive collection of luxury watches. Swiss precision meets innovative design. Lifetime warranty on all timepieces.", url: "https://timelywatches.com", siteName: "Timely Watches", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/human-hand-working-with-laptop-networking-technology_53876-42684.jpg", alt: "Luxury watch collection showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Timely Watches - Premium Luxury Timepieces", description: "Discover exceptional luxury watches combining Swiss craftsmanship with modern design. Shop our exclusive collections today.", images: ["http://img.b2bpic.net/free-photo/human-hand-working-with-laptop-networking-technology_53876-42684.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Timely Watches | Luxury Timepieces", description: "Discover our exclusive collection of luxury timepieces, meticulously crafted to capture a lifetime of moments."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -