Update src/app/page.tsx
This commit is contained in:
345
src/app/page.tsx
345
src/app/page.tsx
@@ -32,29 +32,17 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
name: "Menu", id: "#menu"},
|
||||
{
|
||||
name: "Offers",
|
||||
id: "#offers",
|
||||
},
|
||||
name: "Offers", id: "#offers"},
|
||||
{
|
||||
name: "App",
|
||||
id: "#app",
|
||||
},
|
||||
name: "App", id: "#app"},
|
||||
{
|
||||
name: "Locations",
|
||||
id: "#locations",
|
||||
},
|
||||
name: "Locations", id: "#locations"},
|
||||
{
|
||||
name: "Loyalty",
|
||||
id: "#app",
|
||||
},
|
||||
name: "Loyalty", id: "#app"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/retro-logo-with-text-template_1110-657.jpg"
|
||||
logoAlt="Burger King Logo"
|
||||
@@ -62,28 +50,21 @@ export default function LandingPage() {
|
||||
bottomLeftText="Your Flame-Grilled Journey"
|
||||
bottomRightText="Real Burgers, Real Taste"
|
||||
button={{
|
||||
text: "Order Now",
|
||||
href: "#menu",
|
||||
}}
|
||||
text: "Order Now", href: "#menu"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "canvas-reveal",
|
||||
}}
|
||||
variant: "canvas-reveal"}}
|
||||
logoText="BURGER KING"
|
||||
description="Flame Grilled. Impossible to Ignore.\\\nEvery bite starts with fire."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "#menu",
|
||||
},
|
||||
text: "Order Now", href: "#menu"},
|
||||
{
|
||||
text: "Find a Restaurant",
|
||||
href: "#locations",
|
||||
},
|
||||
text: "Find a Restaurant", href: "#locations"},
|
||||
]}
|
||||
buttonAnimation="opacity"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/small-party-sandwiches-white-square-plate_114579-2171.jpg"
|
||||
@@ -102,53 +83,17 @@ export default function LandingPage() {
|
||||
carouselMode="buttons"
|
||||
products={[
|
||||
{
|
||||
id: "whopper",
|
||||
name: "The Whopper",
|
||||
price: "$7.99",
|
||||
variant: "Classic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pink-hamburger-woman-holding-burger-with-tomato-lettuce-leaf-beef-patty-sauce-burger-buns_140725-10986.jpg",
|
||||
imageAlt: "Classic Whopper burger",
|
||||
},
|
||||
id: "whopper", name: "The Whopper", price: "$7.99", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/pink-hamburger-woman-holding-burger-with-tomato-lettuce-leaf-beef-patty-sauce-burger-buns_140725-10986.jpg", imageAlt: "Classic Whopper burger"},
|
||||
{
|
||||
id: "chicken-sandwich",
|
||||
name: "Original Chicken Sandwich",
|
||||
price: "$6.49",
|
||||
variant: "Crispy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-burger-with-egg-table_23-2148678850.jpg",
|
||||
imageAlt: "Crispy Chicken Sandwich",
|
||||
},
|
||||
id: "chicken-sandwich", name: "Original Chicken Sandwich", price: "$6.49", variant: "Crispy", imageSrc: "http://img.b2bpic.net/free-photo/front-view-burger-with-egg-table_23-2148678850.jpg", imageAlt: "Crispy Chicken Sandwich"},
|
||||
{
|
||||
id: "fries",
|
||||
name: "King Fries",
|
||||
price: "$3.29",
|
||||
variant: "Large",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-french-fries-inside-white-plate-light-surface_140725-29913.jpg",
|
||||
imageAlt: "Golden French Fries",
|
||||
},
|
||||
id: "fries", name: "King Fries", price: "$3.29", variant: "Large", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-french-fries-inside-white-plate-light-surface_140725-29913.jpg", imageAlt: "Golden French Fries"},
|
||||
{
|
||||
id: "dessert",
|
||||
name: "Hershey's Sundae Pie",
|
||||
price: "$2.99",
|
||||
variant: "Sweet Treat",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chocolate-fondant-with-cube-ice-cream-wooden-stick-mint-side-view_140725-11230.jpg",
|
||||
imageAlt: "Chocolate Hershey's Sundae Pie",
|
||||
},
|
||||
id: "dessert", name: "Hershey's Sundae Pie", price: "$2.99", variant: "Sweet Treat", imageSrc: "http://img.b2bpic.net/free-photo/chocolate-fondant-with-cube-ice-cream-wooden-stick-mint-side-view_140725-11230.jpg", imageAlt: "Chocolate Hershey's Sundae Pie"},
|
||||
{
|
||||
id: "drink",
|
||||
name: "Coca-Cola",
|
||||
price: "$2.49",
|
||||
variant: "Large",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/refreshing-cocktail_23-2147643466.jpg",
|
||||
imageAlt: "Refreshing Coca-Cola drink",
|
||||
},
|
||||
id: "drink", name: "Coca-Cola", price: "$2.49", variant: "Large", imageSrc: "http://img.b2bpic.net/free-photo/refreshing-cocktail_23-2147643466.jpg", imageAlt: "Refreshing Coca-Cola drink"},
|
||||
{
|
||||
id: "whopper-meal",
|
||||
name: "Whopper Meal",
|
||||
price: "$10.99",
|
||||
variant: "Combo",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-gourmet-delicous-burgers-black-plate-fries-fast-food-unhealthy-snack_482257-28933.jpg",
|
||||
imageAlt: "Whopper meal with fries and drink",
|
||||
},
|
||||
id: "whopper-meal", name: "Whopper Meal", price: "$10.99", variant: "Combo", imageSrc: "http://img.b2bpic.net/free-photo/tasty-gourmet-delicous-burgers-black-plate-fries-fast-food-unhealthy-snack_482257-28933.jpg", imageAlt: "Whopper meal with fries and drink"},
|
||||
]}
|
||||
title="Taste the Fire. Crave the Flavor."
|
||||
description="Explore our iconic menu, crafted with passion and flame-grilled to perfection. Your favorites are waiting."
|
||||
@@ -160,24 +105,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Our ",
|
||||
},
|
||||
type: "text", content: "Our "},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-vector/icons-with-flames_1308-83606.jpg",
|
||||
alt: "Fire icon",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-vector/icons-with-flames_1308-83606.jpg", alt: "Fire icon"},
|
||||
{
|
||||
type: "text",
|
||||
content: " Legacy: The Flame-Grilled Difference.",
|
||||
},
|
||||
type: "text", content: " Legacy: The Flame-Grilled Difference."},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Discover Our Craft",
|
||||
href: "#ingredients",
|
||||
},
|
||||
text: "Discover Our Craft", href: "#ingredients"},
|
||||
]}
|
||||
buttonAnimation="opacity"
|
||||
/>
|
||||
@@ -190,32 +126,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "flame-grilling",
|
||||
title: "Authentic Flame Grilling",
|
||||
descriptions: [
|
||||
"Our signature process delivers a unique, smoky flavor in every bite. Real fire, real taste.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blurry-image-coal-burning-barbecue_23-2147841291.jpg",
|
||||
imageAlt: "Close-up of burger on grill with flames",
|
||||
},
|
||||
id: "flame-grilling", title: "Authentic Flame Grilling", descriptions: [
|
||||
"Our signature process delivers a unique, smoky flavor in every bite. Real fire, real taste."],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blurry-image-coal-burning-barbecue_23-2147841291.jpg", imageAlt: "Close-up of burger on grill with flames"},
|
||||
{
|
||||
id: "fresh-veggies",
|
||||
title: "Garden Fresh Ingredients",
|
||||
descriptions: [
|
||||
"Crisp lettuce, ripe tomatoes, and fresh onions — hand-picked for peak freshness and flavor.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-burgers-basket-with-copy-space_23-2148784466.jpg",
|
||||
imageAlt: "Fresh vegetables for burgers",
|
||||
},
|
||||
id: "fresh-veggies", title: "Garden Fresh Ingredients", descriptions: [
|
||||
"Crisp lettuce, ripe tomatoes, and fresh onions — hand-picked for peak freshness and flavor."],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-burgers-basket-with-copy-space_23-2148784466.jpg", imageAlt: "Fresh vegetables for burgers"},
|
||||
{
|
||||
id: "signature-recipes",
|
||||
title: "Crafted Signature Recipes",
|
||||
descriptions: [
|
||||
"Time-tested recipes and secret sauces elevate every meal to an unforgettable culinary experience.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/piece-raw-meat-black-stone-pad-near-black-volcanic-salt-rosemary-herb-spices_346278-699.jpg",
|
||||
imageAlt: "Juicy burger patty with grill marks",
|
||||
},
|
||||
id: "signature-recipes", title: "Crafted Signature Recipes", descriptions: [
|
||||
"Time-tested recipes and secret sauces elevate every meal to an unforgettable culinary experience."],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/piece-raw-meat-black-stone-pad-near-black-volcanic-salt-rosemary-herb-spices_346278-699.jpg", imageAlt: "Juicy burger patty with grill marks"},
|
||||
]}
|
||||
title="Unleash the Flavor. Experience Every Detail."
|
||||
description="From crisp lettuce to juicy tomatoes, every ingredient is carefully selected to deliver an unforgettable taste. See the magic unfold."
|
||||
@@ -226,59 +147,25 @@ export default function LandingPage() {
|
||||
<PricingCardFive
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
plans={[
|
||||
{
|
||||
id: "deal-1",
|
||||
tag: "Limited Time",
|
||||
price: "2 FOR $6",
|
||||
period: "Mix & Match",
|
||||
description: "Choose any two of our delicious sandwiches.",
|
||||
button: {
|
||||
text: "Order Deal",
|
||||
href: "#menu",
|
||||
},
|
||||
featuresTitle: "Includes:",
|
||||
features: [
|
||||
"Whopper Jr.",
|
||||
"Original Chicken Sandwich",
|
||||
"Big Fish",
|
||||
"Cheeseburger",
|
||||
],
|
||||
id: "deal-1", tag: "Limited Time", price: "2 FOR $6", period: "Mix & Match", description: "Choose any two of our delicious sandwiches.", button: {
|
||||
text: "Order Deal", href: "#menu"},
|
||||
featuresTitle: "Includes:", features: [
|
||||
"Whopper Jr.", "Original Chicken Sandwich", "Big Fish", "Cheeseburger"],
|
||||
},
|
||||
{
|
||||
id: "deal-2",
|
||||
tag: "Family Favorite",
|
||||
price: "$19.99",
|
||||
period: "Family Bundle",
|
||||
description: "Feed the whole crew with this amazing value meal.",
|
||||
button: {
|
||||
text: "Get Bundle",
|
||||
href: "#menu",
|
||||
},
|
||||
featuresTitle: "Includes:",
|
||||
features: [
|
||||
"2 Whopper Sandwiches",
|
||||
"2 Chicken Jr. Sandwiches",
|
||||
"4 Small Fries",
|
||||
"4 Soft Drinks",
|
||||
],
|
||||
id: "deal-2", tag: "Family Favorite", price: "$19.99", period: "Family Bundle", description: "Feed the whole crew with this amazing value meal.", button: {
|
||||
text: "Get Bundle", href: "#menu"},
|
||||
featuresTitle: "Includes:", features: [
|
||||
"2 Whopper Sandwiches", "2 Chicken Jr. Sandwiches", "4 Small Fries", "4 Soft Drinks"],
|
||||
},
|
||||
{
|
||||
id: "deal-3",
|
||||
tag: "App Exclusive",
|
||||
price: "FREE DESSERT",
|
||||
period: "with any purchase",
|
||||
description: "Download the app for this sweet treat and more exclusive offers.",
|
||||
button: {
|
||||
text: "Download App",
|
||||
href: "#app",
|
||||
},
|
||||
featuresTitle: "Unlock more:",
|
||||
features: [
|
||||
"Exclusive App Offers",
|
||||
"Loyalty Rewards",
|
||||
"Order Ahead",
|
||||
],
|
||||
id: "deal-3", tag: "App Exclusive", price: "FREE DESSERT", period: "with any purchase", description: "Download the app for this sweet treat and more exclusive offers.", button: {
|
||||
text: "Download App", href: "#app"},
|
||||
featuresTitle: "Unlock more:", features: [
|
||||
"Exclusive App Offers", "Loyalty Rewards", "Order Ahead"],
|
||||
},
|
||||
]}
|
||||
title="Unbeatable Deals, Irresistible Flavors."
|
||||
@@ -294,50 +181,20 @@ export default function LandingPage() {
|
||||
carouselMode="buttons"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
handle: "@BurgerQueen",
|
||||
testimonial: "The Whopper is simply the best! That flame-grilled taste is unmatched. My go-to comfort food!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waistup-shot-optimistic-supportive-goodlooking-caucasian-female-white-tshirt-cheering_1258-139706.jpg",
|
||||
imageAlt: "Sarah J. avatar",
|
||||
},
|
||||
id: "1", name: "Sarah J.", handle: "@BurgerQueen", testimonial: "The Whopper is simply the best! That flame-grilled taste is unmatched. My go-to comfort food!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waistup-shot-optimistic-supportive-goodlooking-caucasian-female-white-tshirt-cheering_1258-139706.jpg", imageAlt: "Sarah J. avatar"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Mark D.",
|
||||
handle: "@FlameGrilledFan",
|
||||
testimonial: "Always fresh, always delicious. The app makes ordering so easy, and the rewards are fantastic!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-blurry-priest_23-2149300832.jpg",
|
||||
imageAlt: "Mark D. avatar",
|
||||
},
|
||||
id: "2", name: "Mark D.", handle: "@FlameGrilledFan", testimonial: "Always fresh, always delicious. The app makes ordering so easy, and the rewards are fantastic!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-blurry-priest_23-2149300832.jpg", imageAlt: "Mark D. avatar"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
handle: "@BK_Lover",
|
||||
testimonial: "I love how Burger King consistently delivers on quality. The chicken sandwich is a game-changer!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-praying-with-crossed-fingers-black-background_176420-55695.jpg",
|
||||
imageAlt: "Emily R. avatar",
|
||||
},
|
||||
id: "3", name: "Emily R.", handle: "@BK_Lover", testimonial: "I love how Burger King consistently delivers on quality. The chicken sandwich is a game-changer!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-praying-with-crossed-fingers-black-background_176420-55695.jpg", imageAlt: "Emily R. avatar"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David K.",
|
||||
handle: "@KingOfBurgers",
|
||||
testimonial: "From the crispy fries to the juicy burgers, every item is a masterpiece. BK never disappoints!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-young-modern-woman-posing-kitchen-holding-glass-juice-orange_1258-198426.jpg",
|
||||
imageAlt: "David K. avatar",
|
||||
},
|
||||
id: "4", name: "David K.", handle: "@KingOfBurgers", testimonial: "From the crispy fries to the juicy burgers, every item is a masterpiece. BK never disappoints!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-young-modern-woman-posing-kitchen-holding-glass-juice-orange_1258-198426.jpg", imageAlt: "David K. avatar"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jessica M.",
|
||||
handle: "@HappyEater",
|
||||
testimonial: "The freshness of the ingredients really shines through. It's fast food, elevated. Highly recommend!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-asian-woman-showing-thumbup-approval-wearing-red-blazer-office-work-recomm_1258-156987.jpg",
|
||||
imageAlt: "Jessica M. avatar",
|
||||
},
|
||||
id: "5", name: "Jessica M.", handle: "@HappyEater", testimonial: "The freshness of the ingredients really shines through. It's fast food, elevated. Highly recommend!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-asian-woman-showing-thumbup-approval-wearing-red-blazer-office-work-recomm_1258-156987.jpg", imageAlt: "Jessica M. avatar"},
|
||||
]}
|
||||
showRating={true}
|
||||
title="Real Craves. Real Stories."
|
||||
@@ -351,32 +208,19 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1",
|
||||
title: "How do I find the closest Burger King?",
|
||||
content: "Use our interactive map feature (coming soon!) or enter your ZIP code above to instantly locate the nearest restaurant. Get directions, hours, and contact details.",
|
||||
},
|
||||
id: "faq-1", title: "How do I find the closest Burger King?", content: "Use our interactive map feature (coming soon!) or enter your ZIP code above to instantly locate the nearest restaurant. Get directions, hours, and contact details."},
|
||||
{
|
||||
id: "faq-2",
|
||||
title: "Can I order for delivery?",
|
||||
content: "Yes! Many of our locations offer convenient delivery through the Burger King app or via our delivery partners. Check your local restaurant's options.",
|
||||
},
|
||||
id: "faq-2", title: "Can I order for delivery?", content: "Yes! Many of our locations offer convenient delivery through the Burger King app or via our delivery partners. Check your local restaurant's options."},
|
||||
{
|
||||
id: "faq-3",
|
||||
title: "What are the operating hours?",
|
||||
content: "Operating hours vary by location. Please use our restaurant finder to view specific hours for your chosen Burger King restaurant.",
|
||||
},
|
||||
id: "faq-3", title: "What are the operating hours?", content: "Operating hours vary by location. Please use our restaurant finder to view specific hours for your chosen Burger King restaurant."},
|
||||
]}
|
||||
title="Your Craving, Just Around the Corner."
|
||||
description="Find the nearest Burger King for pickup, drive-thru, or delivery. Plus, discover exclusive in-store offers! Your next flame-grilled adventure is always within reach."
|
||||
buttons={[
|
||||
{
|
||||
text: "Find My Location",
|
||||
href: "#",
|
||||
},
|
||||
text: "Find My Location", href: "#"},
|
||||
{
|
||||
text: "Order Delivery",
|
||||
href: "#menu",
|
||||
},
|
||||
text: "Order Delivery", href: "#menu"},
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
showCard={true}
|
||||
@@ -387,8 +231,7 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Unlock Rewards"
|
||||
title="Your Kingdome, in Your Pocket."
|
||||
description="Download the Burger King app for exclusive deals, easy ordering, and loyalty rewards. The flame-grilled experience is just a tap away."
|
||||
@@ -406,83 +249,49 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
title: "Menu", items: [
|
||||
{
|
||||
label: "Whopper",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Whopper", href: "#menu"},
|
||||
{
|
||||
label: "Chicken",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Chicken", href: "#menu"},
|
||||
{
|
||||
label: "Sides",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Sides", href: "#menu"},
|
||||
{
|
||||
label: "Desserts",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Desserts", href: "#menu"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "#story",
|
||||
},
|
||||
label: "Our Story", href: "#story"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
label: "Careers", href: "#"},
|
||||
{
|
||||
label: "Sustainability",
|
||||
href: "#",
|
||||
},
|
||||
label: "Sustainability", href: "#"},
|
||||
{
|
||||
label: "Newsroom",
|
||||
href: "#",
|
||||
},
|
||||
label: "Newsroom", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "#",
|
||||
},
|
||||
label: "Contact Us", href: "#"},
|
||||
{
|
||||
label: "FAQs",
|
||||
href: "#",
|
||||
},
|
||||
label: "FAQs", href: "#"},
|
||||
{
|
||||
label: "Gift Cards",
|
||||
href: "#",
|
||||
},
|
||||
label: "Gift Cards", href: "#"},
|
||||
{
|
||||
label: "Feedback",
|
||||
href: "#",
|
||||
},
|
||||
label: "Feedback", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms of Service", href: "#"},
|
||||
{
|
||||
label: "Cookie Preferences",
|
||||
href: "#",
|
||||
},
|
||||
label: "Cookie Preferences", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user