diff --git a/src/app/wishlist/page.tsx b/src/app/wishlist/page.tsx new file mode 100644 index 0000000..38fa87a --- /dev/null +++ b/src/app/wishlist/page.tsx @@ -0,0 +1,109 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function WishlistPage() { + return ( + + + +
+
+

My Wishlist

+

View and manage your saved designs.

+ {/* Placeholder for wishlist content */} +
+
+ +
+
+ ); +}