diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx new file mode 100644 index 0000000..6f09714 --- /dev/null +++ b/src/app/checkout/page.tsx @@ -0,0 +1,51 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import ReactLenis from "lenis/react"; + +export default function CheckoutPage() { + return ( + + + +
+

Checkout

+
+
+

Verzendgegevens

+ +
+
+

Orderoverzicht

+
+
The Foundation - Walnoot€149.00
+
Totaal€149.00
+
+
+
+
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 0750af7..8e0a511 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -194,4 +194,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx new file mode 100644 index 0000000..126f3a1 --- /dev/null +++ b/src/app/product/[id]/page.tsx @@ -0,0 +1,66 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ProductDetailCard from '@/components/ecommerce/productDetail/ProductDetailCard'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Star } from "lucide-react"; + +export default function ProductDetailPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file