diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 472f897..16fea2b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Accoutre | Authentic Luxury Verified Delivered", - description: "Premium imported clothing with guaranteed authenticity, interactive sizing, and transparent customer reviews. Shop luxury now.", - keywords: "luxury clothing, authentic designer wear, Pakistani fashion, branded leftovers, verified authentic, premium imports", - metadataBase: new URL("https://accoutre.pk"), - alternates: { - canonical: "https://accoutre.pk", - }, - openGraph: { - title: "Accoutre | Authentic Luxury Verified Delivered", - description: "Handpicked premium clothing with guaranteed authenticity and interactive sizing guidance.", - url: "https://accoutre.pk", - siteName: "Accoutre", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-lifestyle-fashion-shoot_53876-14416.jpg", - alt: "Accoutre luxury fashion showcase", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Accoutre | Authentic Luxury Verified Delivered", - description: "Premium imported clothing with guaranteed authenticity and interactive sizing guidance.", - images: ["http://img.b2bpic.net/free-photo/woman-lifestyle-fashion-shoot_53876-14416.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Accoutre - Authentic Luxury Verified Delivered", description: "Handpicked premium clothing with guaranteed authenticity and interactive sizing guidance. Experience luxury with complete confidence."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -