5 Commits

Author SHA1 Message Date
3094bfaa7a Update src/app/products/page.tsx 2026-01-22 20:39:39 +00:00
bdf4320ecf Update src/app/page.tsx 2026-01-22 20:39:38 +00:00
246c5cfa35 Update src/app/faq/page.tsx 2026-01-22 20:39:37 +00:00
b283cb0b2d Update src/app/blog/page.tsx 2026-01-22 20:39:36 +00:00
7944451d43 Update src/app/about/page.tsx 2026-01-22 20:39:36 +00:00
6 changed files with 24 additions and 96 deletions

View File

@@ -1,13 +1,11 @@
"use client"; "use client";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactCenter from '@/components/sections/contact/ContactCenter'; 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 { Star, Mail } from "lucide-react";
import Link from "next/link";
export default function AboutPage() { export default function AboutPage() {
return ( return (
@@ -29,50 +27,13 @@ export default function AboutPage() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Products", id: "/products" }, { name: "Products", id: "/products" },
{ 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 id="about" data-section="about">
<SplitAbout
title="Our Mission: Radiant Skin for Everyone"
description="Founded on the belief that effective skincare should be accessible, ethical, and results-driven. We've spent years researching and developing formulations that combine the best of science and nature to deliver transformative skincare experiences."
tag="About LuxeGlow"
tagIcon={Heart}
textboxLayout="default"
useInvertedBackground="noInvert"
imagePosition="right"
imageSrc="https://img.b2bpic.net/free-photo/minimalistic-science-banner-with-sample_23-2149431127.jpg"
imageAlt="LuxeGlow skincare laboratory and natural ingredients"
bulletPoints={[
{
title: "Natural Formulations", description: "We use only the finest natural and organic ingredients sourced responsibly from around the world", icon: Leaf
},
{
title: "Dermatologist Tested", description: "Every product is rigorously tested and approved by leading dermatologists for safety and efficacy", icon: Shield
},
{
title: "Cruelty-Free Promise", description: "We are proud to be a 100% cruelty-free and vegan beauty brand committed to ethical practices", icon: Award
},
{
title: "Proven Results", description: "Our customers see noticeable improvements in skin texture, hydration, and radiance within weeks", icon: CheckCircle
}
]}
buttons={[
{ text: "View Our Products", href: "/products" }
]}
/>
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
@@ -114,4 +75,4 @@ export default function AboutPage() {
<FooterLogoReveal logoText="LuxeGlow" /> <FooterLogoReveal logoText="LuxeGlow" />
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -102,7 +102,6 @@ export default function BlogPage() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Products", id: "/products" }, { name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" }, { name: "Pricing", id: "/pricing" },
{ name: "FAQ", id: "/faq" } { name: "FAQ", id: "/faq" }
]} ]}
@@ -133,4 +132,4 @@ export default function BlogPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -7,7 +7,6 @@ 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,19 +28,13 @@ export default function FaqPage() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Products", id: "/products" }, { name: "Products", id: "/products" },
{ 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">
@@ -113,4 +106,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

@@ -2,14 +2,12 @@
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import SplitAbout from '@/components/sections/about/SplitAbout';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactCenter from '@/components/sections/contact/ContactCenter'; 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, Star, Mail } from "lucide-react";
import Link from "next/link";
export default function HomePage() { export default function HomePage() {
return ( return (
@@ -31,19 +29,13 @@ export default function HomePage() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Products", id: "/products" }, { name: "Products", id: "/products" },
{ 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">
@@ -72,7 +64,7 @@ export default function HomePage() {
]} ]}
buttons={[ buttons={[
{ text: "Explore Collection", href: "/products" }, { text: "Explore Collection", href: "/products" },
{ text: "Learn More", href: "/about" } { text: "Learn More", href: "/pricing" }
]} ]}
/> />
</div> </div>
@@ -146,4 +138,4 @@ export default function HomePage() {
<FooterLogoReveal logoText="LuxeGlow" /> <FooterLogoReveal logoText="LuxeGlow" />
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -3,11 +3,10 @@
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 PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
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,19 +28,13 @@ export default function ProductsPage() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Products", id: "/products" }, { name: "Products", id: "/products" },
{ 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">
@@ -87,24 +80,23 @@ export default function ProductsPage() {
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
features={[ features={[
{ {
id: "1", title: "Deep Hydration", tags: ["Hydration", "Moisture"], id: 1,
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-girl-standing-with-cream_1157-29503.jpg", imageAlt: "Hydration benefits visualization" title: "Deep Hydration", description: "Our proprietary blend of hyaluronic acid and botanical extracts penetrates multiple skin layers to deliver intense, long-lasting moisture", 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", "Barrier"], id: 2,
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-woman-applying-moisturizer-her-face-bathroom_637285-3386.jpg", imageAlt: "Skin protection technology demonstration" title: "Protective Shield", description: "Advanced antioxidant complex protects against environmental stressors while strengthening your skin barrier", 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", "Nourishment"], id: 3,
imageSrc: "https://img.b2bpic.net/free-photo/woman-applying-cream-face-while-looking-mirror_23-2148875051.jpg", imageAlt: "Natural ingredients and their benefits" title: "Natural Nourishment", description: "Plant-based vitamins and peptides work synergistically to improve texture, elasticity, and radiance", imageSrc: "https://img.b2bpic.net/free-photo/woman-applying-cream-face-while-looking-mirror_23-2148875051.jpg", imageAlt: "Natural ingredients and their benefits"
} }
]} ]}
animationType="slide-up"
/> />
</div> </div>
<div id="pricing" data-section="pricing"> <div id="pricing" data-section="pricing">
<PricingCardEight <PricingCardOne
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"
@@ -115,29 +107,20 @@ export default function ProductsPage() {
plans={[ plans={[
{ {
id: "1", badge: "Starter", badgeIcon: Star, id: "1", badge: "Starter", badgeIcon: Star,
price: "49", subtitle: "Essential skincare basics", features: [ price: "$49", subtitle: "Essential skincare basics", 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", features: [ price: "$129", subtitle: "Complete daily routine", 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", features: [ price: "$249", subtitle: "Full professional regimen", 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" }
] ]
} }
]} ]}
@@ -147,4 +130,4 @@ export default function ProductsPage() {
<FooterLogoReveal logoText="LuxeGlow" /> <FooterLogoReveal logoText="LuxeGlow" />
</ThemeProvider> </ThemeProvider>
); );
} }