Compare commits
21 Commits
version_11
...
version_16
| Author | SHA1 | Date | |
|---|---|---|---|
| e2da68f728 | |||
| 519b0ece3c | |||
| 3d77fba8e2 | |||
| 720115c257 | |||
| f288f399c9 | |||
| aa62385768 | |||
| b01b074b8a | |||
| a9f2452b48 | |||
| 893a686126 | |||
| e75fcda858 | |||
| cc791b2617 | |||
| 96097fd7e5 | |||
| 1501b297c0 | |||
| 16eaedd92d | |||
| 48faee865a | |||
| f24b95690b | |||
| e735f8328e | |||
| bd43dd08e6 | |||
| cbdb58e477 | |||
| ad6b063ce1 | |||
| 6680355b4f |
48
src/app/cart/page.tsx
Normal file
48
src/app/cart/page.tsx
Normal 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
31
src/app/checkout/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
31
src/app/order-confirmation/page.tsx
Normal file
31
src/app/order-confirmation/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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,7 +60,7 @@ 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"
|
||||
imageSrc="https://images.unsplash.com/photo-1556228720-195a672e8a03?q=80&w=2000&_wi=2"
|
||||
imageAlt="Fresh botanical ingredients for skincare"
|
||||
/>
|
||||
</div>
|
||||
@@ -104,7 +102,7 @@ export default function LandingPage() {
|
||||
cardAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Sarah M.", imageSrc: "https://images.unsplash.com/photo-1534528741775-53994a69daeb?q=80&w=200" },
|
||||
{ id: "t1", name: "Sarah M.", imageSrc: "https://images.unsplash.com/photo-1534528741775-53994a69daeb?q=80&w=200", imageAlt: "Sarah M." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -129,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>
|
||||
@@ -143,4 +141,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
48
src/app/products/page.tsx
Normal file
48
src/app/products/page.tsx
Normal 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
31
src/app/profile/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user