Update src/app/layout.tsx
This commit is contained in:
@@ -6,21 +6,34 @@ import "@/lib/gsap-setup";
|
|||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
|
import { Lato } from "next/font/google";
|
||||||
|
|
||||||
const halant = Halant({
|
const halant = Halant({
|
||||||
variable: "--font-halant",
|
variable: "--font-halant", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter",
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
});
|
||||||
|
|
||||||
|
const lato = Lato({
|
||||||
|
variable: "--font-lato", subsets: ["latin"],
|
||||||
|
weight: ["100", "300", "400", "700", "900"]
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Webild components 2",
|
title: "The Khione Store | Premium Anti-Tarnish Luxury Jewelry", description: "Discover The Khione Store: premium anti-tarnish jewelry with a refined, nature-inspired luxury aesthetic. Timeless designs, artisanal craftsmanship, and quiet confidence.", keywords: "luxury jewelry, anti-tarnish, fine jewelry, gold vermeil, emerald jewelry, nature-inspired, elegant jewelry, sustainable jewelry, designer jewelry, Khione Store", openGraph: {
|
||||||
description: "Generated by create next app",
|
title: "The Khione Store | Premium Anti-Tarnish Luxury Jewelry", description: "Discover The Khione Store: premium anti-tarnish jewelry with a refined, nature-inspired luxury aesthetic. Timeless designs, artisanal craftsmanship, and quiet confidence.", url: "https://www.thekhionestore.com", siteName: "The Khione Store", images: [{"url":"http://img.b2bpic.net/free-photo/soft-indoor-portrait-caucasian-gentle-woman-wearing-beige-suit-no-bra-posing-palm-tropical-plant-gray_343596-3231.jpg","alt":"Elegant model wearing luxury emerald jewelry"}],
|
||||||
|
type: "website"
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image", title: "The Khione Store | Premium Anti-Tarnish Luxury Jewelry", description: "Discover The Khione Store: premium anti-tarnish jewelry with a refined, nature-inspired luxury aesthetic. Timeless designs, artisanal craftsmanship, and quiet confidence.", images: ["http://img.b2bpic.net/free-photo/soft-indoor-portrait-caucasian-gentle-woman-wearing-beige-suit-no-bra-posing-palm-tropical-plant-gray_343596-3231.jpg"]
|
||||||
|
},
|
||||||
|
robots: {
|
||||||
|
index: true,
|
||||||
|
follow: true
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -32,7 +45,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
Reference in New Issue
Block a user