Update src/app/layout.tsx

This commit is contained in:
2026-06-05 10:59:22 +00:00
parent ca3516fa31
commit 48d640a3d8

View File

@@ -1,26 +1,30 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
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: "Webild components 2",
description: "Generated by create next app",
title: "VYNT | Premium Luxury Fashion & Lifestyle", description: "Discover VYNT, the luxury fashion brand blending modern aesthetics with minimalistic streetwear. Built for the ambitious, elegant, and disciplined. Shop exclusive collections.", openGraph: {
title: "VYNT | Premium Luxury Fashion & Lifestyle", description: "Discover VYNT, the luxury fashion brand blending modern aesthetics with minimalistic streetwear. Built for the ambitious, elegant, and disciplined. Shop exclusive collections.", url: "/", siteName: "VYNT", images: [{
url: "http://img.b2bpic.net/free-photo/stylish-mother-with-daughter-summer-city_1157-38466.jpg", alt: "VYNT Luxury Fashion"
}],
type: "website"
},
twitter: {
card: "summary_large_image", title: "VYNT | Premium Luxury Fashion & Lifestyle", description: "Discover VYNT, the luxury fashion brand blending modern aesthetics with minimalistic streetwear. Built for the ambitious, elegant, and disciplined. Shop exclusive collections.", images: ["http://img.b2bpic.net/free-photo/stylish-mother-with-daughter-summer-city_1157-38466.jpg"]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({
@@ -32,7 +36,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
className={`${poppins.variable} antialiased`}
>
<Tag />
{children}