diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx new file mode 100644 index 0000000..1a0a07c --- /dev/null +++ b/src/app/checkout/page.tsx @@ -0,0 +1,39 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; + +export default function CheckoutPage() { + return ( + + +
+

Checkout

+
+
+

Shipping Details

+
+ + + +
+
+
+

Order Summary

+
+
Subtotal$298
+
Total$298
+
+ +
+
+
+
+ ); +}