Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-09 21:19:09 +00:00
2 changed files with 14 additions and 53 deletions

View File

@@ -1,57 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Poppins } 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 dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
const poppins = Poppins({
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Luminé | Premium Natural Skincare | Pure Beauty", description: "Discover Luminé skincare: clinically-tested, nature-inspired formulas with organic ingredients. Award-winning skincare for radiant, healthy skin. Shop our collection today.", keywords: "natural skincare, organic beauty products, premium skincare, cruelty-free cosmetics, dermatologist-tested, anti-aging serum, facial care", metadataBase: new URL("https://luminebeauty.com"),
alternates: {
canonical: "https://luminebeauty.com"},
openGraph: {
title: "Luminé | Premium Natural Skincare", description: "Experience radiant skin with Luminé's scientifically-formulated, nature-inspired skincare collection. 100% natural, cruelty-free, and dermatologist-approved.", url: "https://luminebeauty.com", siteName: "Luminé", images: [
{
url: "http://img.b2bpic.net/free-photo/spa-composition-with-wellness-items-body-care_169016-5849.jpg", alt: "Luminé Premium Skincare Collection"},
],
type: "website"},
twitter: {
card: "summary_large_image", title: "Luminé | Premium Natural Skincare", description: "Discover award-winning skincare with nature-inspired formulas. 100% organic, cruelty-free, clinically-tested.", images: ["http://img.b2bpic.net/free-photo/spa-composition-with-wellness-items-body-care_169016-5849.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Luminé - Premium Skincare", description: "Discover premium, nature-inspired skincare for radiant, healthy skin."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={poppins.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -82,14 +82,10 @@ export default function LandingPage() {
tagIcon={Star}
tagAnimation="slide-up"
products={[
{
id: "1", name: "Radiant Glow Serum", price: "$68", variant: "Golden Elixir Lightweight", imageSrc: "http://img.b2bpic.net/free-psd/minimalist-beauty-template-design_23-2149327939.jpg", imageAlt: "Radiant Glow Serum bottle"},
{
id: "2", name: "Hydration Luxe Cream", price: "$72", variant: "Rich Moisturizer All Skin Types", imageSrc: "http://img.b2bpic.net/free-photo/still-life-beauty-products-based-regenerative-agriculture_23-2150721381.jpg", imageAlt: "Hydration Luxe Cream jar"},
{
id: "3", name: "Pure Renewal Cleanser", price: "$42", variant: "Gentle Formula Balancing", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tube-cream-with-lotionnd-magnifier_140725-14074.jpg", imageAlt: "Pure Renewal Cleanser bottle"},
{
id: "4", name: "Age-Defying Eye Contour", price: "$58", variant: "Anti-Aging Delicate Area", imageSrc: "http://img.b2bpic.net/free-photo/composition-skin-care-cream_23-2148761488.jpg", imageAlt: "Age-Defying Eye Contour"},
{ id: "1", name: "Radiant Glow Serum", price: "$68", variant: "Golden Elixir Lightweight", imageSrc: "http://img.b2bpic.net/free-psd/minimalist-beauty-template-design_23-2149327939.jpg", imageAlt: "Radiant Glow Serum bottle"},
{ id: "2", name: "Hydration Luxe Cream", price: "$72", variant: "Rich Moisturizer All Skin Types", imageSrc: "http://img.b2bpic.net/free-photo/still-life-beauty-products-based-regenerative-agriculture_23-2150721381.jpg", imageAlt: "Hydration Luxe Cream jar"},
{ id: "3", name: "Pure Renewal Cleanser", price: "$42", variant: "Gentle Formula Balancing", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tube-cream-with-lotionnd-magnifier_140725-14074.jpg", imageAlt: "Pure Renewal Cleanser bottle"},
{ id: "4", name: "Age-Defying Eye Contour", price: "$58", variant: "Anti-Aging Delicate Area", imageSrc: "http://img.b2bpic.net/free-photo/composition-skin-care-cream_23-2148761488.jpg", imageAlt: "Age-Defying Eye Contour"},
]}
gridVariant="uniform-all-items-equal"
carouselMode="buttons"
@@ -217,7 +213,7 @@ export default function LandingPage() {
<ContactCenter
tag="Newsletter"
title="Glow with Us"
description="Subscribe to receive exclusive skincare tips, product launches, and special wellness rituals delivered to your inbox"
description="Get exclusive access to skincare tips, product launches, and special wellness rituals delivered to your inbox"
tagIcon={Mail}
tagAnimation="slide-up"
background={{ variant: "radial-gradient" }}