diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 6bc4082..3255bd0 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 4da1e34..15441f4 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {