diff --git a/src/app/layout.tsx b/src/app/layout.tsx index de521d4..f27c354 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "BeautyGlow - Premium Natural Skincare Products", description: "Discover premium beauty care products made with natural ingredients. Dermatologist-tested, cruelty-free skincare for every skin type. Shop now and get 20% off your first order.", keywords: "skincare, beauty care products, natural cosmetics, moisturizer, face serum, beauty care, dermatologist tested", openGraph: { - title: "BeautyGlow - Premium Natural Skincare", description: "Transform your skin with our carefully curated collection of premium beauty care products. Natural ingredients, dermatologist-tested, cruelty-free.", siteName: "BeautyGlow", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-fair-skinned-young-women-s-hands-holding-jars-organic-body-creams-care-moisturizing-concept_197531-31493.jpg", alt: "BeautyGlow Premium Beauty Care Products"}, - ], - }, - twitter: { - card: "summary_large_image", title: "BeautyGlow - Premium Natural Skincare", description: "Discover premium beauty care products with natural ingredients", images: ["http://img.b2bpic.net/free-photo/close-up-fair-skinned-young-women-s-hands-holding-jars-organic-body-creams-care-moisturizing-concept_197531-31493.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "BeautyGlow - Premium Beauty Care Products", description: "Discover our carefully curated collection of skincare essentials designed to transform your beauty routine."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}