Add src/app/mandala-sets/page.tsx
This commit is contained in:
13
src/app/mandala-sets/page.tsx
Normal file
13
src/app/mandala-sets/page.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
"use client";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
|
||||
export default function MandalaSetsPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "Premium Hampers", id: "/premium-hampers"}, {name: "Custom Hampers", id: "/custom-hampers"}, {name: "Mandala Sets", id: "/mandala-sets"}]} brandName="AAROS" />
|
||||
<ProductCardOne title="Mandala Set Collection" description="Intricate mandala artistry for meaningful gifts." gridVariant="three-columns-all-equal-width" animationType="slide-up" textboxLayout="default" />
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user