Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ec8ae146b | |||
| ae12245832 | |||
| 71438f5525 |
293
src/app/page.tsx
293
src/app/page.tsx
@@ -29,21 +29,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "menu"},
|
||||||
id: "menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "reviews"},
|
||||||
id: "reviews",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Location",
|
name: "Location", id: "location"},
|
||||||
id: "location",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Authentic Salvadoran Food"
|
brandName="Authentic Salvadoran Food"
|
||||||
/>
|
/>
|
||||||
@@ -52,116 +44,67 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitDoubleCarousel
|
<HeroSplitDoubleCarousel
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Authentic Salvadoran Food in Lancaster 🍽️"
|
title="Authentic Salvadoran Food in Lancaster 🍽️"
|
||||||
description="Fresh pupusas, homemade pastries, and family-style meals made with love."
|
description="Fresh pupusas, homemade pastries, and family-style meals made with love."
|
||||||
leftCarouselItems={[
|
leftCarouselItems={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024802.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024802.jpg?_wi=1", imageAlt: "Authentic Salvadoran pupusas on a rustic table"},
|
||||||
imageAlt: "Authentic Salvadoran pupusas on a rustic table",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-view_23-2148716415.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-view_23-2148716415.jpg?_wi=1", imageAlt: "Hand-made pupusas"},
|
||||||
imageAlt: "Hand-made pupusas",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-notebook-arrangement_23-2148708222.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-notebook-arrangement_23-2148708222.jpg?_wi=1", imageAlt: "Fresh pan con pollo"},
|
||||||
imageAlt: "Fresh pan con pollo",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/french-fries-bowl-seen-from_1220-274.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/french-fries-bowl-seen-from_1220-274.jpg?_wi=1", imageAlt: "Traditional yuca frita"},
|
||||||
imageAlt: "Traditional yuca frita",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-pastry-table_1398-2210.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/fresh-pastry-table_1398-2210.jpg?_wi=1", imageAlt: "Fresh Salvadoran pastries"},
|
||||||
imageAlt: "Fresh Salvadoran pastries",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024802.jpg?_wi=2",
|
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024802.jpg?_wi=2", imageAlt: "Hearty Salvadoran meal plate"},
|
||||||
imageAlt: "Hearty Salvadoran meal plate",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
rightCarouselItems={[
|
rightCarouselItems={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-notebook-arrangement_23-2148708222.jpg?_wi=2",
|
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-notebook-arrangement_23-2148708222.jpg?_wi=2", imageAlt: "Fresh pan con pollo"},
|
||||||
imageAlt: "Fresh pan con pollo",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/french-fries-bowl-seen-from_1220-274.jpg?_wi=2",
|
imageSrc: "http://img.b2bpic.net/free-photo/french-fries-bowl-seen-from_1220-274.jpg?_wi=2", imageAlt: "Traditional yuca frita"},
|
||||||
imageAlt: "Traditional yuca frita",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-pastry-table_1398-2210.jpg?_wi=2",
|
imageSrc: "http://img.b2bpic.net/free-photo/fresh-pastry-table_1398-2210.jpg?_wi=2", imageAlt: "Fresh Salvadoran pastries"},
|
||||||
imageAlt: "Fresh Salvadoran pastries",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024802.jpg?_wi=3",
|
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024802.jpg?_wi=3", imageAlt: "Hearty Salvadoran meal plate"},
|
||||||
imageAlt: "Hearty Salvadoran meal plate",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-view_23-2148716415.jpg?_wi=2",
|
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-view_23-2148716415.jpg?_wi=2", imageAlt: "Hand-made pupusas"},
|
||||||
imageAlt: "Hand-made pupusas",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024802.jpg?_wi=4",
|
imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024802.jpg?_wi=4", imageAlt: "Traditional family meal"},
|
||||||
imageAlt: "Traditional family meal",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now",
|
text: "Call Now", href: "tel:+16615550199"},
|
||||||
href: "tel:+16615550199",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Get Directions",
|
text: "Get Directions", href: "https://maps.google.com"},
|
||||||
href: "https://maps.google.com",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/side-view-people-hanging-out_23-2149436788.jpg",
|
src: "http://img.b2bpic.net/free-photo/side-view-people-hanging-out_23-2149436788.jpg", alt: "Happy regular customer"},
|
||||||
alt: "Happy regular customer",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-beautiful-asian-woman-friends-reunion_23-2149244683.jpg",
|
src: "http://img.b2bpic.net/free-photo/portrait-beautiful-asian-woman-friends-reunion_23-2149244683.jpg", alt: "Satisfied foodie"},
|
||||||
alt: "Satisfied foodie",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/authentic-small-youthful-marketing-agency_23-2150167446.jpg",
|
src: "http://img.b2bpic.net/free-photo/authentic-small-youthful-marketing-agency_23-2150167446.jpg", alt: "Loyal patron"},
|
||||||
alt: "Loyal patron",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/young-happy-couple-taking-selfie-with-mobile-phone-while-enjoying-date-restaurant_58466-16341.jpg",
|
src: "http://img.b2bpic.net/free-photo/young-happy-couple-taking-selfie-with-mobile-phone-while-enjoying-date-restaurant_58466-16341.jpg", alt: "Happy diner"},
|
||||||
alt: "Happy diner",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/happy-woman-eating-outdoors-chinese-asian-food-sitting-stree_197531-31017.jpg",
|
src: "http://img.b2bpic.net/free-photo/happy-woman-eating-outdoors-chinese-asian-food-sitting-stree_197531-31017.jpg", alt: "Smiling customer"},
|
||||||
alt: "Smiling customer",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Loved by our local community"
|
avatarText="Loved by our local community"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Fresh Ingredients"},
|
||||||
text: "Fresh Ingredients",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Traditional Recipes"},
|
||||||
text: "Traditional Recipes",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Family Owned"},
|
||||||
text: "Family Owned",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Authentic Flavors"},
|
||||||
text: "Authentic Flavors",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Made Daily"},
|
||||||
text: "Made Daily",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -174,41 +117,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Handmade Pupusas", price: "$3.50", imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-view_23-2148716415.jpg?_wi=3"},
|
||||||
name: "Handmade Pupusas",
|
|
||||||
price: "$3.50",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-view_23-2148716415.jpg?_wi=3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Pan Con Pollo", price: "$8.95", imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-notebook-arrangement_23-2148708222.jpg?_wi=3"},
|
||||||
name: "Pan Con Pollo",
|
|
||||||
price: "$8.95",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-notebook-arrangement_23-2148708222.jpg?_wi=3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Yuca Frita", price: "$6.50", imageSrc: "http://img.b2bpic.net/free-photo/french-fries-bowl-seen-from_1220-274.jpg?_wi=3"},
|
||||||
name: "Yuca Frita",
|
|
||||||
price: "$6.50",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/french-fries-bowl-seen-from_1220-274.jpg?_wi=3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Salvadoran Empanadas", price: "$4.00", imageSrc: "http://img.b2bpic.net/free-photo/fresh-pastry-table_1398-2210.jpg?_wi=3"},
|
||||||
name: "Salvadoran Empanadas",
|
|
||||||
price: "$4.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-pastry-table_1398-2210.jpg?_wi=3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Fresh Pastries", price: "$2.50", imageSrc: "http://img.b2bpic.net/free-photo/fresh-pastry-table_1398-2210.jpg?_wi=4"},
|
||||||
name: "Fresh Pastries",
|
|
||||||
price: "$2.50",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-pastry-table_1398-2210.jpg?_wi=4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", name: "Shrimp Tacos", price: "$9.50", imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-view_23-2148716415.jpg?_wi=4"},
|
||||||
name: "Shrimp Tacos",
|
|
||||||
price: "$9.50",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-arrangement-view_23-2148716415.jpg?_wi=4",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Made Fresh Daily"
|
title="Made Fresh Daily"
|
||||||
description="Authentic recipes, prepared with traditional care in the heart of Lancaster."
|
description="Authentic recipes, prepared with traditional care in the heart of Lancaster."
|
||||||
@@ -223,45 +142,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Sarah J.", role: "Regular Customer", company: "Lancaster Local", rating: 5,
|
||||||
name: "Sarah J.",
|
imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-hanging-out_23-2149436788.jpg"},
|
||||||
role: "Regular Customer",
|
|
||||||
company: "Lancaster Local",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-hanging-out_23-2149436788.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Michael R.", role: "Food Enthusiast", company: "Lancaster Local", rating: 5,
|
||||||
name: "Michael R.",
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-asian-woman-friends-reunion_23-2149244683.jpg"},
|
||||||
role: "Food Enthusiast",
|
|
||||||
company: "Lancaster Local",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-asian-woman-friends-reunion_23-2149244683.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Elena D.", role: "Loyal Patron", company: "Lancaster Local", rating: 5,
|
||||||
name: "Elena D.",
|
imageSrc: "http://img.b2bpic.net/free-photo/authentic-small-youthful-marketing-agency_23-2150167446.jpg"},
|
||||||
role: "Loyal Patron",
|
|
||||||
company: "Lancaster Local",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/authentic-small-youthful-marketing-agency_23-2150167446.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "David K.", role: "Business Owner", company: "Lancaster Local", rating: 5,
|
||||||
name: "David K.",
|
imageSrc: "http://img.b2bpic.net/free-photo/young-happy-couple-taking-selfie-with-mobile-phone-while-enjoying-date-restaurant_58466-16341.jpg"},
|
||||||
role: "Business Owner",
|
|
||||||
company: "Lancaster Local",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-happy-couple-taking-selfie-with-mobile-phone-while-enjoying-date-restaurant_58466-16341.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Maria L.", role: "Family Diner", company: "Lancaster Local", rating: 5,
|
||||||
name: "Maria L.",
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-eating-outdoors-chinese-asian-food-sitting-stree_197531-31017.jpg"},
|
||||||
role: "Family Diner",
|
|
||||||
company: "Lancaster Local",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-eating-outdoors-chinese-asian-food-sitting-stree_197531-31017.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Voices of Lancaster"
|
title="Voices of Lancaster"
|
||||||
description="See why our neighbors call us the home of authentic Salvadoran flavor."
|
description="See why our neighbors call us the home of authentic Salvadoran flavor."
|
||||||
@@ -275,60 +169,24 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", badge: "Best Seller", price: "$3.50", subtitle: "Pupusas Revueltas", features: [
|
||||||
badge: "Best Seller",
|
"Cheese & Bean", "Pork & Cheese", "Loroco", "Traditional Masa"],
|
||||||
price: "$3.50",
|
|
||||||
subtitle: "Pupusas Revueltas",
|
|
||||||
features: [
|
|
||||||
"Cheese & Bean",
|
|
||||||
"Pork & Cheese",
|
|
||||||
"Loroco",
|
|
||||||
"Traditional Masa",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", badge: "Popular", price: "$6.50", subtitle: "Yuca Frita", features: [
|
||||||
badge: "Popular",
|
"Served with curtido", "Crispy texture", "Traditional Salsa"],
|
||||||
price: "$6.50",
|
|
||||||
subtitle: "Yuca Frita",
|
|
||||||
features: [
|
|
||||||
"Served with curtido",
|
|
||||||
"Crispy texture",
|
|
||||||
"Traditional Salsa",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", badge: "Special", price: "$8.95", subtitle: "Pan Con Pollo", features: [
|
||||||
badge: "Special",
|
"Fresh Chicken", "Traditional Herbs", "Garden Veggies"],
|
||||||
price: "$8.95",
|
|
||||||
subtitle: "Pan Con Pollo",
|
|
||||||
features: [
|
|
||||||
"Fresh Chicken",
|
|
||||||
"Traditional Herbs",
|
|
||||||
"Garden Veggies",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", badge: "Special", price: "$9.50", subtitle: "Shrimp Tacos", features: [
|
||||||
badge: "Special",
|
"Handmade Tortillas", "Fresh Shrimp", "Zesty Salsa"],
|
||||||
price: "$9.50",
|
|
||||||
subtitle: "Shrimp Tacos",
|
|
||||||
features: [
|
|
||||||
"Handmade Tortillas",
|
|
||||||
"Fresh Shrimp",
|
|
||||||
"Zesty Salsa",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", badge: "Dessert", price: "$2.50", subtitle: "Salvadoran Pastries", features: [
|
||||||
badge: "Dessert",
|
"Sweet Bread", "Custard Filling", "Authentic Dough"],
|
||||||
price: "$2.50",
|
|
||||||
subtitle: "Salvadoran Pastries",
|
|
||||||
features: [
|
|
||||||
"Sweet Bread",
|
|
||||||
"Custard Filling",
|
|
||||||
"Authentic Dough",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Popular Menu Items"
|
title="Popular Menu Items"
|
||||||
@@ -340,18 +198,13 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient",
|
variant: "radial-gradient"}}
|
||||||
}}
|
|
||||||
text="📍 Located in Sunrise Plaza, 907 W Ave J, Lancaster, CA. We are open daily, serving authentic family-style meals. Visit us or call for inquiries!"
|
text="📍 Located in Sunrise Plaza, 907 W Ave J, Lancaster, CA. We are open daily, serving authentic family-style meals. Visit us or call for inquiries!"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Get Directions",
|
text: "Get Directions", href: "https://maps.google.com"},
|
||||||
href: "https://maps.google.com",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Order Ahead",
|
text: "Order Ahead", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -361,37 +214,23 @@ export default function LandingPage() {
|
|||||||
logoText="Authentic Salvadoran Kitchen"
|
logoText="Authentic Salvadoran Kitchen"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Quick Links",
|
title: "Quick Links", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Menu",
|
label: "Menu", href: "#menu"},
|
||||||
href: "#menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Reviews",
|
label: "Reviews", href: "#reviews"},
|
||||||
href: "#reviews",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Directions",
|
label: "Directions", href: "#location"},
|
||||||
href: "#location",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support",
|
title: "Support", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Call Us",
|
label: "Call Us", href: "tel:+16615550199"},
|
||||||
href: "tel:+16615550199",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Instagram",
|
label: "Instagram", href: "https://instagram.com"},
|
||||||
href: "https://instagram.com",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user