diff --git a/src/app/categories/page.tsx b/src/app/categories/page.tsx new file mode 100644 index 0000000..d3609ef --- /dev/null +++ b/src/app/categories/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 CategoriesPage() { + return ( + + + +
+
+

Product Categories

+

Explore our wide range of design categories.

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