diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 86bdd8c..86a7f0e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; +import { Lenis } from "./providers/lenis"; 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"], -}); export const metadata: Metadata = { - title: "Vestra | Luxury Fashion Brand – Stay Rare", description: "Discover Vestra: Premium, minimalist luxury fashion blending German precision engineering with timeless design. Exclusive collections for the discerning.", keywords: "luxury fashion, minimalist design, premium clothing, exclusive apparel, German precision, handcrafted fashion", metadataBase: new URL("https://vestra.com"), - alternates: { - canonical: "https://vestra.com" - }, - openGraph: { - title: "Vestra – Luxury Fashion Brand", description: "Experience the intersection of minimalist design and exceptional craftsmanship with Vestra. Stay Rare.", siteName: "Vestra", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/pisces-portrait-beautiful-woman_23-2149275086.jpg", alt: "Vestra luxury fashion collection" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Vestra – Stay Rare", description: "Premium luxury fashion with German-inspired precision and minimalist design.", images: ["http://img.b2bpic.net/free-photo/pisces-portrait-beautiful-woman_23-2149275086.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Vestra - Luxury Fashion", description: "Discover Vestra—where exclusivity meets precision craftsmanship."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +