14 Commits

6 changed files with 51 additions and 21 deletions

View File

@@ -7,6 +7,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Heart, Leaf, Shield, Award, CheckCircle, Star, Mail } from "lucide-react"; import { Heart, Leaf, Shield, Award, CheckCircle, Star, Mail } from "lucide-react";
import Link from "next/link";
export default function AboutPage() { export default function AboutPage() {
return ( return (
@@ -29,13 +30,18 @@ export default function AboutPage() {
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Products", id: "/products" }, { name: "Products", id: "/products" },
{ name: "About", id: "/about" }, { name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "FAQ", id: "/faq" } { name: "FAQ", id: "/faq" }
]} ]}
button={{ button={{
text: "Shop Now", href: "/products" text: "Shop Now", href: "/products"
}} }}
/> />
<nav className="hidden">
<Link href="/">Home</Link>
<Link href="/products">Products</Link>
<Link href="/about">About</Link>
<Link href="/faq">FAQ</Link>
</nav>
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
@@ -108,4 +114,4 @@ export default function AboutPage() {
<FooterLogoReveal logoText="LuxeGlow" /> <FooterLogoReveal logoText="LuxeGlow" />
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -133,4 +133,4 @@ export default function BlogPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -7,6 +7,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Star, Mail } from "lucide-react"; import { Star, Mail } from "lucide-react";
import Link from "next/link";
export default function FaqPage() { export default function FaqPage() {
return ( return (
@@ -29,13 +30,18 @@ export default function FaqPage() {
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Products", id: "/products" }, { name: "Products", id: "/products" },
{ name: "About", id: "/about" }, { name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "FAQ", id: "/faq" } { name: "FAQ", id: "/faq" }
]} ]}
button={{ button={{
text: "Shop Now", href: "/products" text: "Shop Now", href: "/products"
}} }}
/> />
<nav className="hidden">
<Link href="/">Home</Link>
<Link href="/products">Products</Link>
<Link href="/about">About</Link>
<Link href="/faq">FAQ</Link>
</nav>
</div> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
@@ -107,4 +113,4 @@ export default function FaqPage() {
<FooterLogoReveal logoText="LuxeGlow" /> <FooterLogoReveal logoText="LuxeGlow" />
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -1259,4 +1259,4 @@ export default function RootLayout({
</body> </body>
</html> </html>
); );
} }

View File

@@ -9,6 +9,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Sparkles, Heart, Leaf, Shield, Award, CheckCircle, Star, Mail } from "lucide-react"; import { Sparkles, Heart, Leaf, Shield, Award, CheckCircle, Star, Mail } from "lucide-react";
import Link from "next/link";
export default function HomePage() { export default function HomePage() {
return ( return (
@@ -31,13 +32,18 @@ export default function HomePage() {
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Products", id: "/products" }, { name: "Products", id: "/products" },
{ name: "About", id: "/about" }, { name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "FAQ", id: "/faq" } { name: "FAQ", id: "/faq" }
]} ]}
button={{ button={{
text: "Shop Now", href: "/products" text: "Shop Now", href: "/products"
}} }}
/> />
<nav className="hidden">
<Link href="/">Home</Link>
<Link href="/products">Products</Link>
<Link href="/about">About</Link>
<Link href="/faq">FAQ</Link>
</nav>
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
@@ -140,4 +146,4 @@ export default function HomePage() {
<FooterLogoReveal logoText="LuxeGlow" /> <FooterLogoReveal logoText="LuxeGlow" />
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -3,10 +3,11 @@
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Sparkles, Zap, Star, Heart, Crown } from "lucide-react"; import { Sparkles, Zap, Star, Heart, Crown } from "lucide-react";
import Link from "next/link";
export default function ProductsPage() { export default function ProductsPage() {
return ( return (
@@ -29,13 +30,18 @@ export default function ProductsPage() {
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Products", id: "/products" }, { name: "Products", id: "/products" },
{ name: "About", id: "/about" }, { name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "FAQ", id: "/faq" } { name: "FAQ", id: "/faq" }
]} ]}
button={{ button={{
text: "Shop Now", href: "/products" text: "Shop Now", href: "/products"
}} }}
/> />
<nav className="hidden">
<Link href="/">Home</Link>
<Link href="/products">Products</Link>
<Link href="/about">About</Link>
<Link href="/faq">FAQ</Link>
</nav>
</div> </div>
<div id="products" data-section="products"> <div id="products" data-section="products">
@@ -81,15 +87,15 @@ export default function ProductsPage() {
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
features={[ features={[
{ {
id: "1", title: "Deep Hydration", tags: ["Hydration", "Science"], id: "1", title: "Deep Hydration", tags: ["Hydration", "Moisture"],
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-girl-standing-with-cream_1157-29503.jpg", imageAlt: "Hydration benefits visualization" imageSrc: "https://img.b2bpic.net/free-photo/beautiful-girl-standing-with-cream_1157-29503.jpg", imageAlt: "Hydration benefits visualization"
}, },
{ {
id: "2", title: "Protective Shield", tags: ["Protection", "Advanced"], id: "2", title: "Protective Shield", tags: ["Protection", "Barrier"],
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-woman-applying-moisturizer-her-face-bathroom_637285-3386.jpg", imageAlt: "Skin protection technology demonstration" imageSrc: "https://img.b2bpic.net/free-photo/beautiful-woman-applying-moisturizer-her-face-bathroom_637285-3386.jpg", imageAlt: "Skin protection technology demonstration"
}, },
{ {
id: "3", title: "Natural Nourishment", tags: ["Natural", "Nourish"], id: "3", title: "Natural Nourishment", tags: ["Natural", "Nourishment"],
imageSrc: "https://img.b2bpic.net/free-photo/woman-applying-cream-face-while-looking-mirror_23-2148875051.jpg", imageAlt: "Natural ingredients and their benefits" imageSrc: "https://img.b2bpic.net/free-photo/woman-applying-cream-face-while-looking-mirror_23-2148875051.jpg", imageAlt: "Natural ingredients and their benefits"
} }
]} ]}
@@ -98,7 +104,7 @@ export default function ProductsPage() {
</div> </div>
<div id="pricing" data-section="pricing"> <div id="pricing" data-section="pricing">
<PricingCardOne <PricingCardEight
title="Choose Your Skincare Journey" title="Choose Your Skincare Journey"
description="Select the perfect plan to achieve your best skin" description="Select the perfect plan to achieve your best skin"
tag="Pricing Plans" tag="Pricing Plans"
@@ -109,23 +115,29 @@ export default function ProductsPage() {
plans={[ plans={[
{ {
id: "1", badge: "Starter", badgeIcon: Star, id: "1", badge: "Starter", badgeIcon: Star,
price: "$49", subtitle: "Essential skincare basics", buttons: [{ text: "Get Started", href: "/signup" }], price: "49", subtitle: "Essential skincare basics", features: [
features: [
"Gentle Cleansing Oil", "Hydrating Serum", "Basic moisturizer", "Access to skincare tips" "Gentle Cleansing Oil", "Hydrating Serum", "Basic moisturizer", "Access to skincare tips"
],
buttons: [
{ text: "Get Started", href: "/signup" }
] ]
}, },
{ {
id: "2", badge: "Most Popular", badgeIcon: Heart, id: "2", badge: "Most Popular", badgeIcon: Heart,
price: "$129", subtitle: "Complete daily routine", buttons: [{ text: "Get Started", href: "/signup" }], price: "129", subtitle: "Complete daily routine", features: [
features: [
"All Starter products", "Premium face cream", "Weekly face mask", "Email skincare support", "15% member discount" "All Starter products", "Premium face cream", "Weekly face mask", "Email skincare support", "15% member discount"
],
buttons: [
{ text: "Choose Plan", href: "/signup" }
] ]
}, },
{ {
id: "3", badge: "Luxury", badgeIcon: Crown, id: "3", badge: "Luxury", badgeIcon: Crown,
price: "$249", subtitle: "Full professional regimen", buttons: [{ text: "Get Started", href: "/signup" }], price: "249", subtitle: "Full professional regimen", features: [
features: [
"All Premium products", "Exclusive serums & treatments", "Monthly deliveries", "Priority VIP support", "Free consultations", "25% member discount" "All Premium products", "Exclusive serums & treatments", "Monthly deliveries", "Priority VIP support", "Free consultations", "25% member discount"
],
buttons: [
{ text: "Go Premium", href: "/signup" }
] ]
} }
]} ]}
@@ -135,4 +147,4 @@ export default function ProductsPage() {
<FooterLogoReveal logoText="LuxeGlow" /> <FooterLogoReveal logoText="LuxeGlow" />
</ThemeProvider> </ThemeProvider>
); );
} }