27 Commits

Author SHA1 Message Date
e2da68f728 Update src/app/profile/page.tsx 2026-05-01 16:15:09 +00:00
519b0ece3c Update src/app/products/page.tsx 2026-05-01 16:15:08 +00:00
3d77fba8e2 Update src/app/order-confirmation/page.tsx 2026-05-01 16:15:08 +00:00
720115c257 Update src/app/checkout/page.tsx 2026-05-01 16:15:08 +00:00
f288f399c9 Add src/app/profile/page.tsx 2026-05-01 16:14:40 +00:00
aa62385768 Add src/app/products/page.tsx 2026-05-01 16:14:40 +00:00
b01b074b8a Update src/app/page.tsx 2026-05-01 16:14:39 +00:00
a9f2452b48 Add src/app/order-confirmation/page.tsx 2026-05-01 16:14:39 +00:00
893a686126 Add src/app/checkout/page.tsx 2026-05-01 16:14:39 +00:00
e75fcda858 Add src/app/cart/page.tsx 2026-05-01 16:14:38 +00:00
cc791b2617 Merge version_15 into main
Merge version_15 into main
2026-05-01 16:10:46 +00:00
96097fd7e5 Update theme colors 2026-05-01 16:10:43 +00:00
1501b297c0 Merge version_14 into main
Merge version_14 into main
2026-05-01 16:02:24 +00:00
16eaedd92d Update src/app/page.tsx 2026-05-01 16:02:17 +00:00
48faee865a Merge version_13 into main
Merge version_13 into main
2026-05-01 16:00:23 +00:00
f24b95690b Update src/app/page.tsx 2026-05-01 16:00:20 +00:00
e735f8328e Merge version_13 into main
Merge version_13 into main
2026-05-01 16:00:00 +00:00
bd43dd08e6 Update src/app/page.tsx 2026-05-01 15:59:56 +00:00
cbdb58e477 Merge version_12 into main
Merge version_12 into main
2026-05-01 15:58:21 +00:00
ad6b063ce1 Update src/app/page.tsx 2026-05-01 15:58:18 +00:00
6680355b4f Merge version_11 into main
Merge version_11 into main
2026-05-01 15:57:45 +00:00
654a39464d Update src/app/page.tsx 2026-05-01 15:57:42 +00:00
c4ddbbbba8 Merge version_10 into main
Merge version_10 into main
2026-05-01 15:55:30 +00:00
12c7269c07 Update src/app/page.tsx 2026-05-01 15:55:27 +00:00
8bcc6a4755 Merge version_9 into main
Merge version_9 into main
2026-05-01 15:52:54 +00:00
a5da514502 Update src/app/page.tsx 2026-05-01 15:52:48 +00:00
7adfe96435 Merge version_8 into main
Merge version_8 into main
2026-05-01 15:51:20 +00:00
7 changed files with 218 additions and 29 deletions

48
src/app/cart/page.tsx Normal file
View File

@@ -0,0 +1,48 @@
"use client";
import { useState } from 'react';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterCard from '@/components/sections/footer/FooterCard';
import ProductCart from '@/components/ecommerce/cart/ProductCart';
export default function CartPage() {
const [isOpen, setIsOpen] = useState(true);
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="compact"
sizing="mediumLargeSizeLargeTitles"
background="none"
cardStyle="gradient-mesh"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/#about" },
{ name: "Contact", id: "/#contact" },
{ name: "Cart", id: "/cart" }
]}
brandName="ELEGANT SKIN"
/>
<div className="pt-32 pb-20 min-h-[60vh]">
<ProductCart
isOpen={isOpen}
onClose={() => setIsOpen(false)}
items={[]}
total="$0.00"
buttons={[{ text: "Checkout" }]}
title="Your Shopping Cart"
/>
</div>
<FooterCard logoText="ELEGANT SKIN" copyrightText="© 2025 Elegant Skin. All rights reserved." />
</ThemeProvider>
);
}

31
src/app/checkout/page.tsx Normal file
View File

@@ -0,0 +1,31 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterCard from '@/components/sections/footer/FooterCard';
export default function CheckoutPage() {
return (
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Checkout", id: "/checkout" },
{ name: "Profile", id: "/profile" },
{ name: "Confirmation", id: "/order-confirmation" }
]}
/>
<div className="min-h-screen pt-32">
<ContactSplit title="Checkout" description="Please enter your shipping and payment details to complete your order." tag="Order" background={{ variant: "plain" }} useInvertedBackground={false} />
</div>
<FooterCard logoText="ELEGANT SKIN" copyrightText="© 2025 Elegant Skin. All rights reserved." />
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -0,0 +1,31 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterCard from '@/components/sections/footer/FooterCard';
import MediaAbout from '@/components/sections/about/MediaAbout';
export default function OrderConfirmationPage() {
return (
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Checkout", id: "/checkout" },
{ name: "Profile", id: "/profile" },
{ name: "Confirmation", id: "/order-confirmation" }
]}
/>
<div className="min-h-screen pt-32">
<MediaAbout title="Order Confirmed" description="Thank you for your purchase! Your order summary is below." useInvertedBackground={false} />
</div>
<FooterCard logoText="ELEGANT SKIN" copyrightText="© 2025 Elegant Skin. All rights reserved." />
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -6,12 +6,11 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { CheckCircle, Leaf, Recycle, Shield, Sparkles } from "lucide-react";
export default function LandingPage() {
return (
@@ -31,28 +30,27 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "#home" },
{ name: "Home", id: "/" },
{ name: "Products", id: "#products" },
{ name: "About", id: "#about" },
{ name: "Contact", id: "#contact" },
{ name: "Checkout", id: "/checkout" },
{ name: "Profile", id: "/profile" },
{ name: "Confirmation", id: "/order-confirmation" }
]}
brandName="ELEGANT SKIN"
/>
</div>
<div id="hero" data-section="hero">
<HeroCentered
background={{ variant: "gradient-bars" }}
title="Unlock Your Glowing Skin."
description="Experience the ultimate hydration and natural radiance with Elegant Skin's premium botanical cream collection."
avatars={[]}
buttons={[{ text: "Shop Now", href: "#products" }]}
marqueeItems={[
{ type: "text-icon", text: "Cruelty-Free Certified", icon: Shield },
{ type: "text-icon", text: "100% Organic Extracts", icon: Leaf },
{ type: "text-icon", text: "Dermatologist Tested", icon: CheckCircle },
{ type: "text-icon", text: "Visible Results in 7 Days", icon: Sparkles },
{ type: "text-icon", text: "Sustainable Packaging", icon: Recycle },
<HeroCarouselLogo
logoText="ELEGANT SKIN"
description="Discover the new standard in botanical skincare with our premium, glowing formulas."
buttons={[{ text: "Shop Collection", href: "#products" }]}
slides={[
{ imageSrc: "https://images.unsplash.com/photo-1598440947619-2c35fd959146?q=80&w=2000", imageAlt: "Premium Night Cream" },
{ imageSrc: "https://images.unsplash.com/photo-1619451334792-150fd3d24c94?q=80&w=2000", imageAlt: "Radiance Day Cream" },
{ imageSrc: "https://images.unsplash.com/photo-1556228720-195a672e8a03?q=80&w=2000&_wi=1", imageAlt: "Botanical Ingredients" }
]}
/>
</div>
@@ -62,6 +60,8 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Nature's Finest Ingredients"
description="Discover our dermatologist-tested, organic collection designed for visible radiance"
imageSrc="https://images.unsplash.com/photo-1556228720-195a672e8a03?q=80&w=2000&_wi=2"
imageAlt="Fresh botanical ingredients for skincare"
/>
</div>
@@ -87,8 +87,8 @@ export default function LandingPage() {
useInvertedBackground={false}
buttons={[{ text: "View All Products", href: "#all-products" }]}
products={[
{ id: "p1", brand: "Elegant Skin", name: "Botanical Night Cream", price: "$45.00", rating: 5, reviewCount: "120", imageSrc: "" },
{ id: "p2", brand: "Elegant Skin", name: "Day Radiance Cream", price: "$38.00", rating: 5, reviewCount: "95", imageSrc: "" },
{ id: "p1", brand: "Elegant Skin", name: "Botanical Night Cream", price: "$45.00", rating: 5, reviewCount: "120", imageSrc: "https://images.unsplash.com/photo-1598440947619-2c35fd959146?q=80&w=800" },
{ id: "p2", brand: "Elegant Skin", name: "Day Radiance Cream", price: "$38.00", rating: 5, reviewCount: "95", imageSrc: "https://images.unsplash.com/photo-1619451334792-150fd3d24c94?q=80&w=800" },
]}
title="Our Collection"
description="Shop our premium creams, serums, and lotions."
@@ -102,7 +102,7 @@ export default function LandingPage() {
cardAnimation="slide-up"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "Sarah M.", imageSrc: "" },
{ id: "t1", name: "Sarah M.", imageSrc: "https://images.unsplash.com/photo-1534528741775-53994a69daeb?q=80&w=200", imageAlt: "Sarah M." },
]}
/>
</div>
@@ -127,7 +127,7 @@ export default function LandingPage() {
useInvertedBackground={false}
background={{ variant: "plain" }}
title="Join Our Beauty Journey"
description="Join 50k+ customers and get 10% off your first order"
description="Join 50k+ customers and get 10% off your first order. Link your account today at WooCommerce."
mediaAnimation="slide-up"
/>
</div>
@@ -141,4 +141,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

48
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,48 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterCard from '@/components/sections/footer/FooterCard';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="compact"
sizing="mediumLargeSizeLargeTitles"
background="none"
cardStyle="gradient-mesh"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Cart", id: "/cart" }
]}
/>
<div className="pt-32 pb-20">
<ProductCardThree
title="All Products"
description="Browse our complete collection of botanical skincare."
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "p1", name: "Botanical Night Cream", price: "$45.00", imageSrc: "https://images.unsplash.com/photo-1598440947619-2c35fd959146?q=80&w=800" },
{ id: "p2", name: "Day Radiance Cream", price: "$38.00", imageSrc: "https://images.unsplash.com/photo-1619451334792-150fd3d24c94?q=80&w=800" },
]}
/>
</div>
<FooterCard logoText="ELEGANT SKIN" copyrightText="© 2025 Elegant Skin. All rights reserved." />
</ThemeProvider>
);
}

31
src/app/profile/page.tsx Normal file
View File

@@ -0,0 +1,31 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterCard from '@/components/sections/footer/FooterCard';
import MediaAbout from '@/components/sections/about/MediaAbout';
export default function ProfilePage() {
return (
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Checkout", id: "/checkout" },
{ name: "Profile", id: "/profile" },
{ name: "Confirmation", id: "/order-confirmation" }
]}
/>
<div className="min-h-screen pt-32">
<MediaAbout title="User Profile" description="Manage your account settings, order history, and preferences." useInvertedBackground={false} />
</div>
<FooterCard logoText="ELEGANT SKIN" copyrightText="© 2025 Elegant Skin. All rights reserved." />
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fdfaf7;
--card: #f5f0e9;
--foreground: #3d2b21;
--primary-cta: #c68a62;
--primary-cta-text: #f6f0e9;
--secondary-cta: #ffffff;
--secondary-cta-text: #2b180a;
--accent: #e3deea;
--background-accent: #c68a62;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);