diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx new file mode 100644 index 0000000..762b9cc --- /dev/null +++ b/src/app/cart/page.tsx @@ -0,0 +1,38 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; + +export default function CartPage() { + return ( + + +
+

Your Shopping Cart

+
+
Your cart is currently empty.
+
+
+
+ ); +} \ No newline at end of file diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx new file mode 100644 index 0000000..04b6a9c --- /dev/null +++ b/src/app/checkout/page.tsx @@ -0,0 +1,50 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; + +export default function CheckoutPage() { + return ( + + +
+

Checkout

+
+
+

Shipping Information

+
+ + +
+
+
+

Order Summary

+
+

Total: $0.00

+
+
+
+
+
+ ); +} \ No newline at end of file diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx new file mode 100644 index 0000000..17ff744 --- /dev/null +++ b/src/app/login/page.tsx @@ -0,0 +1,49 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; + +export default function LoginPage() { + return ( + + +
+ console.log("Login data:", data)} + /> +
+ +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index f83cbd8..4b30389 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardFifteen from "@/components/sections/testimonial/Testimonia import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Mail, Leaf, Droplet, Sprout, Wind } from "lucide-react"; +import { Mail, Leaf, Droplet, Sprout, Wind, Instagram, Camera } from "lucide-react"; export default function SkincareTemplatePage() { return ( @@ -31,10 +31,11 @@ export default function SkincareTemplatePage() { brandName="Luminé Skincare" navItems={[ { name: "Products", id: "products" }, - { name: "About", id: "about" }, - { name: "Benefits", id: "benefits" }, - { name: "Reviews", id: "reviews" }, - { name: "Contact", id: "contact" } + { name: "New", id: "new-arrivals" }, + { name: "Best Sellers", id: "best-sellers" }, + { name: "Trending", id: "trending" }, + { name: "Gallery", id: "gallery" }, + { name: "About", id: "about" } ]} button={{ text: "Shop Now", href: "products" }} /> @@ -56,200 +57,66 @@ export default function SkincareTemplatePage() { /> -
- -
- -
+
-
+
+ +
+ + + + - -
-
-
- + -
- -
-
); -} +} \ No newline at end of file diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d45b6e6..5a70a84 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #fcf6ec; - --card: #f3ede2; - --foreground: #2e2521; - --primary-cta: #2e2521; + --background: #f7f6f7; + --card: #ffffff; + --foreground: #251919; + --primary-cta: #1b0c0c; --primary-cta-text: #fcf6ec; - --secondary-cta: #ffffff; + --secondary-cta: #f0e8e8; --secondary-cta-text: #2e2521; - --accent: #b2a28b; - --background-accent: #b2a28b; + --accent: #e8a8a8; + --background-accent: #f7dada; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);