Update src/app/collections/embercell/page.tsx

This commit is contained in:
2026-05-31 22:42:52 +00:00
parent 0c31b2de7b
commit ae8a61fab9

View File

@@ -6,13 +6,44 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import FooterBase from '@/components/sections/footer/FooterBase';
const consistentNavItems = [
{ name: "Shop", id: "#shop" },
{ name: "Best Sellers", id: "#best-sellers" },
{ name: "Collections", id: "/collections" },
{ name: "Products", id: "#products" },
{ name: "Concerns", id: "#concerns" },
{ name: "About", id: "#about" },
{ name: "Contact", id: "#contact" },
{ 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 EmberCellCollectionPage() {
@@ -42,37 +73,7 @@ export default function EmberCellCollectionPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "SHOP", items: [
{ label: "Best Sellers", href: "#best-sellers" },
{ label: "Collections", href: "/collections" },
{ label: "Body Care", href: "#products" },
{ label: "Serums", href: "#products" },
{ label: "Masks", href: "#products" },
],
},
{
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: "#" },
],
},
]}
columns={consistentFooterColumns}
logoText="Introstem"
copyrightText="© 2024 Introstem. All Rights Reserved."
/>
@@ -80,4 +81,4 @@ export default function EmberCellCollectionPage() {
</ReactLenis>
</ThemeProvider>
);
}
}