diff --git a/src/app/collections/[collectionId]/page.tsx b/src/app/collections/[collectionId]/page.tsx index e1ad85a..b2e3a38 100644 --- a/src/app/collections/[collectionId]/page.tsx +++ b/src/app/collections/[collectionId]/page.tsx @@ -32,6 +32,47 @@ const collectionProducts: { [key: string]: any[] } = { const collectionTitles: { [key: string]: string } = { "p-aqua": "Aqua Collection", "p-embercell": "EmberCell Collection", "p-prismastem": "PrismaStem Collection"}; +const consistentNavItems = [ + { name: "Home", id: "/"}, + { name: "Best Sellers", id: "/#best-sellers"}, + { name: "Aqua Collection", id: "/collections/p-aqua"}, + { name: "EmberCell Collection", id: "/collections/p-embercell"}, + { name: "PrismaStem Collection", id: "/collections/p-prismastem"}, + { name: "About", id: "/#about"}, + { name: "Contact", id: "/#contact"}, +]; + +const consistentFooterColumns = [ + { + title: "SHOP", items: [ + { label: "Best Sellers", href: "/#best-sellers"}, + { label: "Aqua Collection", href: "/collections/p-aqua"}, + { label: "EmberCell Collection", href: "/collections/p-embercell"}, + { label: "PrismaStem Collection", href: "/collections/p-prismastem"}, + ], + }, + { + title: "CUSTOMER SERVICE", items: [ + { label: "Contact Us", href: "/#contact"}, + { label: "FAQ", href: "/#faq"}, + { label: "Shipping & Returns", href: "#"}, + ], + }, + { + title: "ABOUT US", items: [ + { label: "Our Story", href: "/#about"}, + { label: "Our Philosophy", href: "/#about"}, + { label: "Careers", href: "#"}, + ], + }, + { + title: "LEGAL", items: [ + { label: "Privacy Policy", href: "#"}, + { label: "Terms of Service", href: "#"}, + ], + }, +]; + export default function CollectionPage() { const params = useParams(); const collectionId = params.collectionId as string; @@ -54,16 +95,7 @@ export default function CollectionPage() { @@ -83,36 +115,7 @@ export default function CollectionPage() {