Update src/app/layout.tsx
This commit is contained in:
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user