diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 11fd41c..ee9859c 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 { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Vestra | Luxury Fashion - Stay Rare", description: "Discover Vestra's exclusive, handcrafted luxury clothing collection. Premium minimalist fashion for those who refuse to follow the ordinary. Stay Rare.", keywords: "luxury fashion, minimalist clothing, exclusive collections, premium apparel, handcrafted fashion, designer clothes, sustainable luxury", metadataBase: new URL("https://vestra.luxury"), - alternates: { - canonical: "https://vestra.luxury" - }, - openGraph: { - title: "Vestra | Luxury Fashion - Stay Rare", description: "Discover Vestra's exclusive, handcrafted luxury clothing collection. Premium minimalist fashion for those who refuse to follow the ordinary.", siteName: "Vestra", type: "website", url: "https://vestra.luxury", images: [ - { - url: "http://img.b2bpic.net/free-photo/full-length-young-fashionable-caucasian-brunette-woman-with-red-lipstick-wears-black-clothes-glasses-holds-glass-booze-indoors_197531-32093.jpg", alt: "Vestra luxury fashion collection" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Vestra | Luxury Fashion - Stay Rare", description: "Discover exclusive, handcrafted luxury clothing. Premium minimalist design.", images: ["http://img.b2bpic.net/free-photo/full-length-young-fashionable-caucasian-brunette-woman-with-red-lipstick-wears-black-clothes-glasses-holds-glass-booze-indoors_197531-32093.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Vestra | Stay Rare", description: "Discover exclusive, handcrafted clothing that celebrates individuality and timeless craftsmanship."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}