From 90f43ddae36d889b3fdbf8f3a088700d393d14c5 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 06:23:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 57 ++++++++-------------------------------------- 1 file changed, 9 insertions(+), 48 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f7fe5e5..d09b4fb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Archivo } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Inter } from "next/font/google"; +import "@/styles/globals.css"; -const archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "GlowAura - Premium Beauty & Skincare Products", - description: "Discover luxury beauty and skincare products for men and women. Premium formulas with natural ingredients. Cruelty-free, dermatologically tested. Shop now.", - keywords: "beauty products, skincare, luxury cosmetics, natural ingredients, women's beauty, men's grooming, anti-acne, skincare routine", - metadataBase: new URL("https://glowaura.com"), - alternates: { - canonical: "https://glowaura.com" - }, - openGraph: { - title: "GlowAura - Reveal Your Natural Glow", - description: "Premium beauty and skincare products for confidence. Luxury collection for women and men.", - siteName: "GlowAura", - 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: "GlowAura Premium Beauty Collection" - } - ] - }, - twitter: { - card: "summary_large_image", - title: "GlowAura - Premium Beauty & Skincare", - description: "Luxury beauty products with natural ingredients. Shop women's and men's collections.", - 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: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}