diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 38b0cd6..456f639 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,38 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { DM_Sans } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; +import ServiceWrapper from "@/providers/serviceWrapper/ServiceWrapper"; +import Tag from "@/components/common/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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "LUXA | Luxury Fashion & Editorial Collections", description: "Discover timeless luxury fashion with minimalist elegance. Premium couture, editorial pieces, and exclusive collections from LUXA—where craftsmanship meets refined aesthetics.", keywords: "luxury fashion, high-end couture, editorial clothing, designer pieces, premium apparel, luxury brand", openGraph: { - title: "LUXA | Luxury Fashion Collections", description: "Experience timeless elegance with LUXA's premium fashion selections", url: "https://luxa-fashion.com", siteName: "LUXA", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-woman-shine-clothes-posing-camera_613910-11041.jpg", alt: "LUXA luxury fashion collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "LUXA | Luxury Fashion", description: "Discover premium fashion with editorial aesthetics", images: ["http://img.b2bpic.net/free-photo/young-woman-shine-clothes-posing-camera_613910-11041.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "LUXA - Luxury Fashion House", description: "Discover timeless luxury fashion crafted with precision and style"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +