7 Commits

Author SHA1 Message Date
3a6009f519 Update src/app/shop/page.tsx 2026-05-18 14:12:05 +00:00
51189a49d4 Update src/app/checkout/page.tsx 2026-05-18 14:12:05 +00:00
b163498954 Add src/app/shop/page.tsx 2026-05-18 14:11:39 +00:00
40a93691ec Update src/app/page.tsx 2026-05-18 14:11:39 +00:00
2f83feb32f Add src/app/checkout/page.tsx 2026-05-18 14:11:39 +00:00
1a41147c6a Merge version_2 into main
Merge version_2 into main
2026-05-18 13:52:17 +00:00
c5718a44b9 Merge version_2 into main
Merge version_2 into main
2026-05-18 13:51:51 +00:00
3 changed files with 107 additions and 0 deletions

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

@@ -0,0 +1,43 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
export default function CheckoutPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="largeSizeMediumTitles"
background="floatingGradient"
cardStyle="glass-elevated"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Cart", id: "/cart" },
]}
brandName="Joli Café Bar"
/>
<div className="pt-32 pb-16">
<ContactSplitForm
title="Checkout"
description="Enter your shipping and payment details to complete your order."
inputs={[
{ name: "shippingAddress", type: "text", placeholder: "Shipping Address", required: true },
{ name: "paymentInfo", type: "text", placeholder: "Card Details", required: true }
]}
buttonText="Complete Purchase"
useInvertedBackground={false}
/>
</div>
</ThemeProvider>
);
}

View File

@@ -34,6 +34,8 @@ export default function LandingPage() {
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" },
{ name: "Cart", id: "/cart" },
]}
brandName="Joli Café Bar"
/>

62
src/app/shop/page.tsx Normal file
View File

@@ -0,0 +1,62 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function ShopPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="largeSizeMediumTitles"
background="floatingGradient"
cardStyle="glass-elevated"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
]}
brandName="Joli Café Bar"
/>
</div>
<div id="products" data-section="products">
<ProductCardTwo
title="Our Clothing Collection"
description="Discover our latest apparel, curated for style and comfort."
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
products={[
{ id: "p1", brand: "Joli", name: "Essential Cotton Tee", price: "$35", rating: 5, reviewCount: "(120)", imageSrc: "http://img.b2bpic.net/free-photo/stylish-man-casual-clothes_23-2148782354.jpg" },
{ id: "p2", brand: "Joli", name: "Relaxed Fit Hoodie", price: "$65", rating: 4, reviewCount: "(85)", imageSrc: "http://img.b2bpic.net/free-photo/hoodie-mockup_23-2148782354.jpg" },
{ id: "p3", brand: "Joli", name: "Summer Linen Shirt", price: "$55", rating: 5, reviewCount: "(45)", imageSrc: "http://img.b2bpic.net/free-photo/linen-shirt_23-2148782354.jpg" },
{ id: "p4", brand: "Joli", name: "Denim Everyday Jacket", price: "$95", rating: 4, reviewCount: "(60)", imageSrc: "http://img.b2bpic.net/free-photo/denim-jacket_23-2148782354.jpg" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Joli Café Bar"
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Shop", href: "/shop" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}