diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3a14405..caf8bb9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +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: "Elavate | Premium Styling Powder for Professional Makeup", description: "Discover Elavate luxury styling powder collection. Professional-grade cosmetics with buildable coverage, long-wearing formula, and flawless finish. Shop now.", keywords: "styling powder, luxury cosmetics, makeup powder, professional makeup, beauty products, vegan cosmetics, cruelty-free makeup", openGraph: { - title: "Elavate | Premium Styling Powder", description: "Experience salon-quality beauty with Elavate's premium styling powder collection.", siteName: "Elavate", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-dealing-with-rosacea-applying-make-up-with-brush_23-2150248337.jpg", alt: "Elavate Premium Styling Powder Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Elavate | Premium Styling Powder", description: "Professional-grade cosmetics for flawless beauty.", images: ["http://img.b2bpic.net/free-photo/woman-dealing-with-rosacea-applying-make-up-with-brush_23-2150248337.jpg"], - }, -}; + title: "Elavate - Premium Styling Powder", description: "Elevate your style with our premium styling powder collection. Professional-grade cosmetics designed for flawless, long-lasting beauty."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}