diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f0b8f3e..884b238 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,32 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; +import { Poppins } 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "MyLeo - Premium Fashion Watches | Luxury Timepieces", description: "Discover MyLeo's collection of luxury fashion watches. Elegantly designed timepieces combining Swiss-inspired precision with contemporary style.", keywords: "luxury watches, fashion timepieces, premium watches, elegant watch design, Swiss watch, designer watch", metadataBase: new URL("https://myleo-watches.com"), alternates: { - canonical: "https://myleo-watches.com"}, + canonical: "https://myleo-watches.com" + }, openGraph: { title: "MyLeo - Premium Fashion Watches", description: "Luxury timepieces that blend sophistication with innovation. Explore our curated collection.", type: "website", siteName: "MyLeo", images: [ { - url: "http://img.b2bpic.net/free-vector/watch-background-design_1268-652.jpg", alt: "MyLeo Premium Fashion Watch Collection"}, + url: "http://img.b2bpic.net/free-vector/watch-background-design_1268-652.jpg", alt: "MyLeo Premium Fashion Watch Collection" + }, ], }, twitter: { @@ -46,9 +38,7 @@ export default function RootLayout({ return ( - + {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index a848bff..9720968 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,16 +15,16 @@ import { Sparkles, Award, Mail } from 'lucide-react'; export default function LandingPage() { return (