Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 39876f7306 | |||
| 7251a5b91e | |||
| cdfc4b7159 | |||
| 64051c0f28 |
@@ -29,13 +29,14 @@ export default function BlogPage() {
|
|||||||
brandName="Coca-Cola"
|
brandName="Coca-Cola"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Shop", id: "products" },
|
{ name: "Shop", id: "/shop" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "features" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Order Now", href: "#products" }}
|
button={{ text: "Order Now", href: "/shop" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -64,26 +65,26 @@ export default function BlogPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Shop", items: [
|
title: "Shop", items: [
|
||||||
{ label: "All Products", href: "#products" },
|
{ label: "All Products", href: "/shop" },
|
||||||
{ label: "Classic Coke", href: "#" },
|
{ label: "Classic Coke", href: "/shop" },
|
||||||
{ label: "Diet Coke", href: "#" },
|
{ label: "Diet Coke", href: "/shop" },
|
||||||
{ label: "Coke Zero", href: "#" }
|
{ label: "Coke Zero", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "about" },
|
||||||
{ label: "Our Heritage", href: "#" },
|
{ label: "Our Heritage", href: "about" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "about" },
|
||||||
{ label: "Sustainability", href: "#" }
|
{ label: "Sustainability", href: "about" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "FAQ", href: "#" },
|
{ label: "FAQ", href: "/blog" },
|
||||||
{ label: "Shipping Info", href: "#" },
|
{ label: "Shipping Info", href: "/shop" },
|
||||||
{ label: "Returns", href: "#" }
|
{ label: "Returns", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
||||||
@@ -31,14 +31,15 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Coca-Cola"
|
brandName="Coca-Cola"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Shop", id: "products" },
|
{ name: "Shop", id: "/shop" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "features" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Order Now", href: "#products"
|
text: "Order Now", href: "/shop"
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -49,8 +50,8 @@ export default function LandingPage() {
|
|||||||
description="Taste the refreshment that has delighted generations. Premium quality beverages crafted for every moment. From classic cola to innovative flavors, discover your perfect drink."
|
description="Taste the refreshment that has delighted generations. Premium quality beverages crafted for every moment. From classic cola to innovative flavors, discover your perfect drink."
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Shop Now", href: "#products" },
|
{ text: "Shop Now", href: "/shop" },
|
||||||
{ text: "Learn More", href: "#about" }
|
{ text: "Learn More", href: "about" }
|
||||||
]}
|
]}
|
||||||
layoutOrder="default"
|
layoutOrder="default"
|
||||||
imageSrc="https://img.b2bpic.net/free-photo/pouring-soda-drink-from-bottle-glass-close-up_169016-19026.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/pouring-soda-drink-from-bottle-glass-close-up_169016-19026.jpg"
|
||||||
@@ -142,21 +143,21 @@ export default function LandingPage() {
|
|||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "single", badge: "Single Bottle", badgeIcon: Droplet,
|
id: "single", badge: "Single Bottle", badgeIcon: Droplet,
|
||||||
price: "$2.99", subtitle: "Perfect for a quick refresh", buttons: [{ text: "Add to Cart", href: "#" }],
|
price: "$2.99", subtitle: "Perfect for a quick refresh", buttons: [{ text: "Add to Cart", href: "/shop" }],
|
||||||
features: [
|
features: [
|
||||||
"Single 20oz bottle", "Fresh and cold delivery", "Free local shipping over $10"
|
"Single 20oz bottle", "Fresh and cold delivery", "Free local shipping over $10"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "case", badge: "Most Popular", badgeIcon: Sparkles,
|
id: "case", badge: "Most Popular", badgeIcon: Sparkles,
|
||||||
price: "$35.99", subtitle: "Best value for regular consumers", buttons: [{ text: "Select Case", href: "#" }],
|
price: "$35.99", subtitle: "Best value for regular consumers", buttons: [{ text: "Select Case", href: "/shop" }],
|
||||||
features: [
|
features: [
|
||||||
"12 pack of 12oz bottles", "Premium refrigerated delivery", "Free shipping included", "Exclusive member benefits"
|
"12 pack of 12oz bottles", "Premium refrigerated delivery", "Free shipping included", "Exclusive member benefits"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "subscription", badge: "Premium Subscription", badgeIcon: Award,
|
id: "subscription", badge: "Premium Subscription", badgeIcon: Award,
|
||||||
price: "$99.99/mo", subtitle: "Unlimited refreshment monthly", buttons: [{ text: "Subscribe Now", href: "#" }],
|
price: "$99.99/mo", subtitle: "Unlimited refreshment monthly", buttons: [{ text: "Subscribe Now", href: "/shop" }],
|
||||||
features: [
|
features: [
|
||||||
"Unlimited monthly cases", "Priority fast delivery", "Exclusive seasonal flavors", "24/7 dedicated support", "Member-only pricing"
|
"Unlimited monthly cases", "Priority fast delivery", "Exclusive seasonal flavors", "24/7 dedicated support", "Member-only pricing"
|
||||||
]
|
]
|
||||||
@@ -176,8 +177,7 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"Coca-Cola", "Sprite",
|
"Coca-Cola", "Sprite", "Fanta", "Dasani", "Smartwater", "Minute Maid", "Powerade", "Vitaminwater"
|
||||||
"Fanta", "Dasani", "Smartwater", "Minute Maid", "Powerade", "Vitaminwater"
|
|
||||||
]}
|
]}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
speed={40}
|
speed={40}
|
||||||
@@ -210,8 +210,8 @@ export default function LandingPage() {
|
|||||||
text="Ready to refresh yourself with the world's favorite beverage? Join millions of satisfied customers and discover why Coca-Cola is the choice of a new generation."
|
text="Ready to refresh yourself with the world's favorite beverage? Join millions of satisfied customers and discover why Coca-Cola is the choice of a new generation."
|
||||||
animationType="background-highlight"
|
animationType="background-highlight"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Order Your First Bottle", href: "#products" },
|
{ text: "Order Your First Bottle", href: "/shop" },
|
||||||
{ text: "Subscribe for Savings", href: "#pricing" }
|
{ text: "Subscribe for Savings", href: "pricing" }
|
||||||
]}
|
]}
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -224,26 +224,26 @@ export default function LandingPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Shop", items: [
|
title: "Shop", items: [
|
||||||
{ label: "All Products", href: "#products" },
|
{ label: "All Products", href: "/shop" },
|
||||||
{ label: "Classic Coke", href: "#" },
|
{ label: "Classic Coke", href: "/shop" },
|
||||||
{ label: "Diet Coke", href: "#" },
|
{ label: "Diet Coke", href: "/shop" },
|
||||||
{ label: "Coke Zero", href: "#" }
|
{ label: "Coke Zero", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "about" },
|
||||||
{ label: "Our Heritage", href: "#" },
|
{ label: "Our Heritage", href: "about" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "about" },
|
||||||
{ label: "Sustainability", href: "#" }
|
{ label: "Sustainability", href: "about" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "FAQ", href: "#" },
|
{ label: "FAQ", href: "/blog" },
|
||||||
{ label: "Shipping Info", href: "#" },
|
{ label: "Shipping Info", href: "/shop" },
|
||||||
{ label: "Returns", href: "#" }
|
{ label: "Returns", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -86,7 +86,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
brandName="Coca-Cola"
|
brandName="Coca-Cola"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Shop", id: "products" },
|
{ name: "Shop", id: "/shop" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "features" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
@@ -104,26 +105,26 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Shop", items: [
|
title: "Shop", items: [
|
||||||
{ label: "All Products", href: "#products" },
|
{ label: "All Products", href: "/shop" },
|
||||||
{ label: "Classic Coke", href: "#" },
|
{ label: "Classic Coke", href: "/shop" },
|
||||||
{ label: "Diet Coke", href: "#" },
|
{ label: "Diet Coke", href: "/shop" },
|
||||||
{ label: "Coke Zero", href: "#" }
|
{ label: "Coke Zero", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "about" },
|
||||||
{ label: "Our Heritage", href: "#" },
|
{ label: "Our Heritage", href: "about" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "about" },
|
||||||
{ label: "Sustainability", href: "#" }
|
{ label: "Sustainability", href: "about" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "FAQ", href: "#" },
|
{ label: "FAQ", href: "/blog" },
|
||||||
{ label: "Shipping Info", href: "#" },
|
{ label: "Shipping Info", href: "/shop" },
|
||||||
{ label: "Returns", href: "#" }
|
{ label: "Returns", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -162,7 +163,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
brandName="Coca-Cola"
|
brandName="Coca-Cola"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Shop", id: "products" },
|
{ name: "Shop", id: "/shop" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "features" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
@@ -188,26 +190,26 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Shop", items: [
|
title: "Shop", items: [
|
||||||
{ label: "All Products", href: "#products" },
|
{ label: "All Products", href: "/shop" },
|
||||||
{ label: "Classic Coke", href: "#" },
|
{ label: "Classic Coke", href: "/shop" },
|
||||||
{ label: "Diet Coke", href: "#" },
|
{ label: "Diet Coke", href: "/shop" },
|
||||||
{ label: "Coke Zero", href: "#" }
|
{ label: "Coke Zero", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "about" },
|
||||||
{ label: "Our Heritage", href: "#" },
|
{ label: "Our Heritage", href: "about" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "about" },
|
||||||
{ label: "Sustainability", href: "#" }
|
{ label: "Sustainability", href: "about" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "FAQ", href: "#" },
|
{ label: "FAQ", href: "/blog" },
|
||||||
{ label: "Shipping Info", href: "#" },
|
{ label: "Shipping Info", href: "/shop" },
|
||||||
{ label: "Returns", href: "#" }
|
{ label: "Returns", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -245,7 +247,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
brandName="Coca-Cola"
|
brandName="Coca-Cola"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Shop", id: "products" },
|
{ name: "Shop", id: "/shop" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "features" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
@@ -296,26 +299,26 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Shop", items: [
|
title: "Shop", items: [
|
||||||
{ label: "All Products", href: "#products" },
|
{ label: "All Products", href: "/shop" },
|
||||||
{ label: "Classic Coke", href: "#" },
|
{ label: "Classic Coke", href: "/shop" },
|
||||||
{ label: "Diet Coke", href: "#" },
|
{ label: "Diet Coke", href: "/shop" },
|
||||||
{ label: "Coke Zero", href: "#" }
|
{ label: "Coke Zero", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "about" },
|
||||||
{ label: "Our Heritage", href: "#" },
|
{ label: "Our Heritage", href: "about" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "about" },
|
||||||
{ label: "Sustainability", href: "#" }
|
{ label: "Sustainability", href: "about" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "FAQ", href: "#" },
|
{ label: "FAQ", href: "/blog" },
|
||||||
{ label: "Shipping Info", href: "#" },
|
{ label: "Shipping Info", href: "/shop" },
|
||||||
{ label: "Returns", href: "#" }
|
{ label: "Returns", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -38,7 +38,8 @@ export default function ShopPage() {
|
|||||||
brandName="Coca-Cola"
|
brandName="Coca-Cola"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Shop", id: "products" },
|
{ name: "Shop", id: "/shop" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "features" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
@@ -56,26 +57,26 @@ export default function ShopPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Shop", items: [
|
title: "Shop", items: [
|
||||||
{ label: "All Products", href: "#products" },
|
{ label: "All Products", href: "/shop" },
|
||||||
{ label: "Classic Coke", href: "#" },
|
{ label: "Classic Coke", href: "/shop" },
|
||||||
{ label: "Diet Coke", href: "#" },
|
{ label: "Diet Coke", href: "/shop" },
|
||||||
{ label: "Coke Zero", href: "#" }
|
{ label: "Coke Zero", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "about" },
|
||||||
{ label: "Our Heritage", href: "#" },
|
{ label: "Our Heritage", href: "about" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "about" },
|
||||||
{ label: "Sustainability", href: "#" }
|
{ label: "Sustainability", href: "about" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "FAQ", href: "#" },
|
{ label: "FAQ", href: "/blog" },
|
||||||
{ label: "Shipping Info", href: "#" },
|
{ label: "Shipping Info", href: "/shop" },
|
||||||
{ label: "Returns", href: "#" }
|
{ label: "Returns", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -113,7 +114,8 @@ export default function ShopPage() {
|
|||||||
brandName="Coca-Cola"
|
brandName="Coca-Cola"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Shop", id: "products" },
|
{ name: "Shop", id: "/shop" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "features" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
@@ -139,26 +141,26 @@ export default function ShopPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Shop", items: [
|
title: "Shop", items: [
|
||||||
{ label: "All Products", href: "#products" },
|
{ label: "All Products", href: "/shop" },
|
||||||
{ label: "Classic Coke", href: "#" },
|
{ label: "Classic Coke", href: "/shop" },
|
||||||
{ label: "Diet Coke", href: "#" },
|
{ label: "Diet Coke", href: "/shop" },
|
||||||
{ label: "Coke Zero", href: "#" }
|
{ label: "Coke Zero", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "about" },
|
||||||
{ label: "Our Heritage", href: "#" },
|
{ label: "Our Heritage", href: "about" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "about" },
|
||||||
{ label: "Sustainability", href: "#" }
|
{ label: "Sustainability", href: "about" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "contact" },
|
||||||
{ label: "FAQ", href: "#" },
|
{ label: "FAQ", href: "/blog" },
|
||||||
{ label: "Shipping Info", href: "#" },
|
{ label: "Shipping Info", href: "/shop" },
|
||||||
{ label: "Returns", href: "#" }
|
{ label: "Returns", href: "/shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user