diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e18d9f4..f3ae576 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "LUXE - Premium Fashion & Contemporary Design", description: "Discover curated collections of premium clothing designed for the modern individual. Experience timeless elegance meets cutting-edge design.", keywords: "luxury fashion, contemporary clothing, premium brands, designer clothes, elegant style", metadataBase: new URL("https://www.luxefashion.com"), - alternates: { - canonical: "https://www.luxefashion.com"}, - openGraph: { - title: "LUXE - Premium Fashion & Contemporary Design", description: "Discover our curated collection of contemporary clothing designed for modern individuals.", url: "https://www.luxefashion.com", siteName: "LUXE", images: [ - { - url: "http://img.b2bpic.net/free-photo/seductive-close-up-photo-beautiful-blonde-girl-cocktail-silk-dress-seduces-someone-touching-her-lips-by-her-finger_639032-835.jpg", alt: "elegant woman fashion model premium clothing"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "LUXE - Premium Fashion & Contemporary Design", description: "Elevate your style with our curated collection of premium clothing.", images: ["http://img.b2bpic.net/free-photo/seductive-close-up-photo-beautiful-blonde-girl-cocktail-silk-dress-seduces-someone-touching-her-lips-by-her-finger_639032-835.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "LUXE - Premium Fashion Collection", description: "Discover our curated collection of contemporary clothing designed for the modern individual."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}