diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fd2aac4..7759268 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +import { Lenis } from "./lenis"; +import "../styles/globals.css"; export const metadata: Metadata = { - title: "Destiny Apparel - Premium Fashion Collection", description: "Shop Destiny's curated collection of premium contemporary clothing. Discover stylish, sustainable pieces designed for the modern lifestyle.", keywords: "fashion, apparel, clothing, streetwear, premium collection, contemporary style", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Destiny Apparel - Premium Fashion Collection", description: "Elevate your style with Destiny's premium collection of contemporary clothing", siteName: "Destiny", type: "website"}, - twitter: { - card: "summary_large_image", title: "Destiny Apparel - Premium Fashion Collection", description: "Shop premium contemporary clothing designed for the modern individual"}, -}; + title: "Destiny Apparel | Premium Fashion", description: "Discover premium contemporary clothing designed for the modern individual."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - + + + {children} - -