diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2c7d245..d10af47 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,22 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Luminé | Premium Natural Skincare", description: "Discover luxury skincare with 100% natural ingredients. Cruelty-free, dermatologist-tested formulations for radiant, healthy skin.", keywords: "skincare, natural beauty, luxury cosmetics, serums, moisturizer, organic skincare", metadataBase: new URL("https://luminé.com"), - alternates: { - canonical: "https://luminé.com"}, - openGraph: { - title: "Luminé | Premium Natural Skincare", description: "Luxury botanical skincare for radiant, healthy skin. 100% natural and cruelty-free.", url: "https://luminé.com", siteName: "Luminé", type: "website"}, - twitter: { - card: "summary_large_image", title: "Luminé | Premium Natural Skincare", description: "Discover luxury natural skincare that transforms your skin."}, -}; + title: "Luminé - Premium Natural Skincare", description: "Discover luxurious skincare with premium botanical ingredients"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}