16 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
e735f8328e Merge version_13 into main
Merge version_13 into main
2026-05-01 16:00:00 +00:00
7 changed files with 204 additions and 13 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

@@ -11,7 +11,6 @@ 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,10 +30,13 @@ 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"
/>
@@ -125,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>
@@ -139,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);