Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-03-04 06:23:12 +00:00
2 changed files with 18 additions and 50 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -23,6 +23,13 @@ const navItems = [
];
export default function Home() {
const handleShopNowClick = () => {
const featuredSection = document.getElementById("featured-products");
if (featuredSection) {
featuredSection.scrollIntoView({ behavior: "smooth" });
}
};
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -55,7 +62,7 @@ export default function Home() {
]}
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Shop Women's", href: "/womens" },
{ text: "Shop Now", onClick: handleShopNowClick },
{ text: "Shop Men's", href: "/mens" }
]}
buttonAnimation="slide-up"
@@ -258,4 +265,4 @@ export default function Home() {
</div>
</ThemeProvider>
);
}
}