Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4c543f66a0 | |||
| f8b887cd5a | |||
| d4f1f24210 | |||
| ae8a61fab9 | |||
| 0c31b2de7b | |||
| d3952bcf3e | |||
| e3f1f794e0 | |||
| f67d61ae42 | |||
| e22caec5de |
@@ -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() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ 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"},
|
||||
|
||||
]}
|
||||
navItems={consistentNavItems}
|
||||
brandName="Introstem"
|
||||
/>
|
||||
</div>
|
||||
@@ -83,36 +115,7 @@ export default function CollectionPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
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: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={consistentFooterColumns}
|
||||
logoText="Introstem"
|
||||
copyrightText="© 2024 Introstem. All Rights Reserved."
|
||||
/>
|
||||
|
||||
@@ -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 AquaCollectionPage() {
|
||||
@@ -42,37 +73,7 @@ export default function AquaCollectionPage() {
|
||||
|
||||
<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 AquaCollectionPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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 CollectionsIndexPage() {
|
||||
@@ -57,37 +88,7 @@ export default function CollectionsIndexPage() {
|
||||
|
||||
<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."
|
||||
/>
|
||||
@@ -95,4 +96,4 @@ export default function CollectionsIndexPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,12 +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 PrismaStemCollectionPage() {
|
||||
@@ -41,37 +73,7 @@ export default function PrismaStemCollectionPage() {
|
||||
|
||||
<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."
|
||||
/>
|
||||
@@ -79,4 +81,4 @@ export default function PrismaStemCollectionPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user