From a72c59812003399247dc547401397ec974fdc5d5 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 02:17:43 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 41c92b1..87611bd 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 { Archivo } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "SkinGlow - Premium Skincare Products", description: "Discover premium skincare solutions with natural ingredients. Science-backed formulas for radiant, healthy skin. Shop bestselling serums, creams, and more.", keywords: "skincare, skincare products, serums, moisturizer, natural skincare, dermatologist-approved, premium cosmetics", openGraph: { - title: "SkinGlow - Premium Skincare Products", description: "Transform your skin with our natural, clinically-proven skincare collection", siteName: "SkinGlow", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/serum-bottle-balanced-smooth-white-stones_9975-135599.jpg", alt: "SkinGlow Premium Skincare"}, - ], - }, - twitter: { - card: "summary_large_image", title: "SkinGlow - Premium Skincare Products", description: "Transform your skin with our natural, clinically-proven skincare collection", images: ["http://img.b2bpic.net/free-photo/serum-bottle-balanced-smooth-white-stones_9975-135599.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "SkinGlow - Premium Skincare", description: "Discover our premium skincare collection formulated with natural ingredients to nourish, renew, and transform your skin."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}