Merge version_1 into main #2
301
src/app/page.tsx
301
src/app/page.tsx
@@ -11,7 +11,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
|
||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import { Camera, Facebook, Instagram, MessageCircle, Utensils } from "lucide-react";
|
||||
import { Camera, ChefHat, Facebook, Instagram, MessageCircle, Utensils } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,21 +32,13 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Inicio", id: "hero"},
|
||||
{
|
||||
name: "Menú",
|
||||
id: "menu",
|
||||
},
|
||||
name: "Menú", id: "menu"},
|
||||
{
|
||||
name: "Promociones",
|
||||
id: "promotions",
|
||||
},
|
||||
name: "Promociones", id: "promotions"},
|
||||
{
|
||||
name: "Contacto",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contacto", id: "contact"},
|
||||
]}
|
||||
brandName="Heiwa Hōfu"
|
||||
/>
|
||||
@@ -55,102 +47,57 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="Heiwa Hōfu Plaza Tepozan"
|
||||
description="El mejor ramen y sushi de Pachuca. Disfruta de una experiencia culinaria auténtica preparada con los ingredientes más frescos."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Juan Perez",
|
||||
handle: "@juanp",
|
||||
testimonial: "Excelente ramen, porciones grandes y buen servicio.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg?_wi=1",
|
||||
},
|
||||
name: "Juan Perez", handle: "@juanp", testimonial: "Excelente ramen, porciones grandes y buen servicio.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg"},
|
||||
{
|
||||
name: "Ana Lopez",
|
||||
handle: "@analp",
|
||||
testimonial: "Muy rico y accesible, excelente sushi.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-sunny-smiling-blonde-woman-white-sweater-eating-sushi-lunch-small-caffe_231208-5226.jpg?_wi=1",
|
||||
},
|
||||
name: "Ana Lopez", handle: "@analp", testimonial: "Muy rico y accesible, excelente sushi.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-sunny-smiling-blonde-woman-white-sweater-eating-sushi-lunch-small-caffe_231208-5226.jpg"},
|
||||
{
|
||||
name: "Carlos Ruiz",
|
||||
handle: "@carlosr",
|
||||
testimonial: "La comida siempre fresca, un gran lugar.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-female-with-broad-pleasant-smile-rests-sidewalk-cafe-alone-enjoys-good-rest-summer-vacation_273609-3491.jpg?_wi=1",
|
||||
},
|
||||
name: "Carlos Ruiz", handle: "@carlosr", testimonial: "La comida siempre fresca, un gran lugar.", rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-female-with-broad-pleasant-smile-rests-sidewalk-cafe-alone-enjoys-good-rest-summer-vacation_273609-3491.jpg"},
|
||||
{
|
||||
name: "Maria Diaz",
|
||||
handle: "@mdiaz",
|
||||
testimonial: "Atención rápida y sabor inigualable.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-eating-restaurant_23-2148395390.jpg?_wi=1",
|
||||
},
|
||||
name: "Maria Diaz", handle: "@mdiaz", testimonial: "Atención rápida y sabor inigualable.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-eating-restaurant_23-2148395390.jpg"},
|
||||
{
|
||||
name: "Pedro Soto",
|
||||
handle: "@psoto",
|
||||
testimonial: "El lugar favorito de mi familia.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-eating-sushi_23-2151344984.jpg?_wi=1",
|
||||
},
|
||||
name: "Pedro Soto", handle: "@psoto", testimonial: "El lugar favorito de mi familia.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-eating-sushi_23-2151344984.jpg"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Ver menú",
|
||||
href: "#menu",
|
||||
},
|
||||
text: "Ver menú", href: "#menu"},
|
||||
{
|
||||
text: "Ordenar ahora",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Ordenar ahora", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-hawaiian-poke-bowl_23-2148873844.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-hawaiian-poke-bowl_23-2148873844.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/stylish-smiling-beautiful-woman-retro-vintage-50s-cafe-sitting-bar-drinking-milk-shake-cocktail-pink-tshirt-balcj-leather-jacket-jeans-having-fun-cheerful-mood_285396-10732.jpg",
|
||||
alt: "Diner 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/stylish-smiling-beautiful-woman-retro-vintage-50s-cafe-sitting-bar-drinking-milk-shake-cocktail-pink-tshirt-balcj-leather-jacket-jeans-having-fun-cheerful-mood_285396-10732.jpg", alt: "Diner 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-cafe-dines-traditional-shakshuka-ayran_169016-16512.jpg",
|
||||
alt: "Diner 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-cafe-dines-traditional-shakshuka-ayran_169016-16512.jpg", alt: "Diner 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-noodles_23-2149005440.jpg",
|
||||
alt: "Diner 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-noodles_23-2149005440.jpg", alt: "Diner 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/attractive-young-woman-hands-holds-two-burgers-blurred-background_169016-43765.jpg",
|
||||
alt: "Diner 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/attractive-young-woman-hands-holds-two-burgers-blurred-background_169016-43765.jpg", alt: "Diner 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/blonde-woman-eating-sushi-using-chopsticks_496169-314.jpg",
|
||||
alt: "Diner 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/blonde-woman-eating-sushi-using-chopsticks_496169-314.jpg", alt: "Diner 5"},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Auténtico",
|
||||
},
|
||||
type: "text", text: "Auténtico"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Artesanal",
|
||||
},
|
||||
type: "text", text: "Artesanal"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Frescura",
|
||||
},
|
||||
type: "text", text: "Frescura"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Calidad",
|
||||
},
|
||||
type: "text", text: "Calidad"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Tradición",
|
||||
},
|
||||
type: "text", text: "Tradición"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -160,7 +107,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Tradición y frescura en cada plato"
|
||||
description="En Heiwa Hōfu nos especializamos en comida preparada al momento. Nuestras porciones generosas y ambiente acogedor lo convierten en el lugar ideal para citas, amigos y familia."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-preparing-sushi-order-takeaway_23-2149050369.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-preparing-sushi-order-takeaway_23-2149050369.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -172,47 +119,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Tonkotsu Ramen",
|
||||
price: "$180",
|
||||
variant: "Ramen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-ramen-with-chopsticks_23-2150606751.jpg?_wi=1",
|
||||
},
|
||||
id: "1", name: "Tonkotsu Ramen", price: "$180", variant: "Ramen", imageSrc: "http://img.b2bpic.net/free-photo/delicious-ramen-with-chopsticks_23-2150606751.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "California Roll",
|
||||
price: "$120",
|
||||
variant: "Sushi",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/raw-fresh-nigiri-sushi_74190-5946.jpg",
|
||||
},
|
||||
id: "2", name: "California Roll", price: "$120", variant: "Sushi", imageSrc: "http://img.b2bpic.net/free-photo/raw-fresh-nigiri-sushi_74190-5946.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Gyoza Tradicional",
|
||||
price: "$90",
|
||||
variant: "Entradas",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/roasted-potato-pieces-with-ketchup-baked-paper_23-2148026833.jpg",
|
||||
},
|
||||
id: "3", name: "Gyoza Tradicional", price: "$90", variant: "Entradas", imageSrc: "http://img.b2bpic.net/free-photo/roasted-potato-pieces-with-ketchup-baked-paper_23-2148026833.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Té Matcha",
|
||||
price: "$50",
|
||||
variant: "Té japonés",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-hot-water-composition_23-2149055834.jpg",
|
||||
},
|
||||
id: "4", name: "Té Matcha", price: "$50", variant: "Té japonés", imageSrc: "http://img.b2bpic.net/free-photo/still-life-hot-water-composition_23-2149055834.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Michelada Especial",
|
||||
price: "$85",
|
||||
variant: "Micheladas",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spicy-michelada-beverage-arrangement_23-2149027798.jpg",
|
||||
},
|
||||
id: "5", name: "Michelada Especial", price: "$85", variant: "Micheladas", imageSrc: "http://img.b2bpic.net/free-photo/spicy-michelada-beverage-arrangement_23-2149027798.jpg"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Edamame",
|
||||
price: "$60",
|
||||
variant: "Entradas",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-tasty-edamame-beans-served-plate-ready-eat_1220-7667.jpg",
|
||||
},
|
||||
id: "6", name: "Edamame", price: "$60", variant: "Entradas", imageSrc: "http://img.b2bpic.net/free-photo/fresh-tasty-edamame-beans-served-plate-ready-eat_1220-7667.jpg"},
|
||||
]}
|
||||
title="Nuestro Menú"
|
||||
description="Ramen, sushi y especialidades japonesas preparadas con maestría."
|
||||
@@ -226,49 +143,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "p1",
|
||||
title: "2x1 en Sushi",
|
||||
price: "Martes",
|
||||
period: "de 1pm a 6pm",
|
||||
features: [
|
||||
"Sushi variado",
|
||||
"Ingredientes frescos",
|
||||
],
|
||||
id: "p1", title: "2x1 en Sushi", price: "Martes", period: "de 1pm a 6pm", features: [
|
||||
"Sushi variado", "Ingredientes frescos"],
|
||||
button: {
|
||||
text: "Reservar",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-ignoring-woman-while-talking-phone_107420-65720.jpg",
|
||||
imageAlt: "japanese restaurant interior dark lighting",
|
||||
},
|
||||
text: "Reservar"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-ignoring-woman-while-talking-phone_107420-65720.jpg", imageAlt: "japanese restaurant interior dark lighting"},
|
||||
{
|
||||
id: "p2",
|
||||
title: "Combo Ramen",
|
||||
price: "$220",
|
||||
period: "Todo el día",
|
||||
features: [
|
||||
"Ramen grande",
|
||||
"Bebida a elegir",
|
||||
],
|
||||
id: "p2", title: "Combo Ramen", price: "$220", period: "Todo el día", features: [
|
||||
"Ramen grande", "Bebida a elegir"],
|
||||
button: {
|
||||
text: "Ordenar",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/composition-hawaiian-poke-bowl_23-2148873844.jpg?_wi=2",
|
||||
imageAlt: "japanese restaurant interior dark lighting",
|
||||
},
|
||||
text: "Ordenar"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/composition-hawaiian-poke-bowl_23-2148873844.jpg", imageAlt: "japanese restaurant interior dark lighting"},
|
||||
{
|
||||
id: "p3",
|
||||
title: "Descuento Estudiantes",
|
||||
price: "15%",
|
||||
period: "Presentando credencial",
|
||||
features: [
|
||||
"Válido en cuenta total",
|
||||
],
|
||||
id: "p3", title: "Descuento Estudiantes", price: "15%", period: "Presentando credencial", features: [
|
||||
"Válido en cuenta total"],
|
||||
button: {
|
||||
text: "Ver más",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-preparing-sushi-order-takeaway_23-2149050369.jpg?_wi=2",
|
||||
imageAlt: "japanese restaurant interior dark lighting",
|
||||
},
|
||||
text: "Ver más"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-preparing-sushi-order-takeaway_23-2149050369.jpg", imageAlt: "japanese restaurant interior dark lighting"},
|
||||
]}
|
||||
title="Promociones"
|
||||
description="Aprovecha nuestras ofertas especiales cada semana."
|
||||
@@ -282,45 +173,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Juan Perez",
|
||||
handle: "@juan",
|
||||
testimonial: "Excelente ramen, porciones grandes.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg?_wi=2",
|
||||
},
|
||||
id: "t1", name: "Juan Perez", handle: "@juan", testimonial: "Excelente ramen, porciones grandes.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Ana Lopez",
|
||||
handle: "@ana",
|
||||
testimonial: "Muy rico y accesible.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-sunny-smiling-blonde-woman-white-sweater-eating-sushi-lunch-small-caffe_231208-5226.jpg?_wi=2",
|
||||
},
|
||||
id: "t2", name: "Ana Lopez", handle: "@ana", testimonial: "Muy rico y accesible.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-sunny-smiling-blonde-woman-white-sweater-eating-sushi-lunch-small-caffe_231208-5226.jpg"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Luis Gomez",
|
||||
handle: "@luis",
|
||||
testimonial: "Comida siempre fresca.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-female-with-broad-pleasant-smile-rests-sidewalk-cafe-alone-enjoys-good-rest-summer-vacation_273609-3491.jpg?_wi=2",
|
||||
},
|
||||
id: "t3", name: "Luis Gomez", handle: "@luis", testimonial: "Comida siempre fresca.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-female-with-broad-pleasant-smile-rests-sidewalk-cafe-alone-enjoys-good-rest-summer-vacation_273609-3491.jpg"},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Maria Diaz",
|
||||
handle: "@maria",
|
||||
testimonial: "Buen ambiente para pasar el rato.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-eating-restaurant_23-2148395390.jpg?_wi=2",
|
||||
},
|
||||
id: "t4", name: "Maria Diaz", handle: "@maria", testimonial: "Buen ambiente para pasar el rato.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-eating-restaurant_23-2148395390.jpg"},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Pedro Soto",
|
||||
handle: "@pedro",
|
||||
testimonial: "Excelente sushi y ramen.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-eating-sushi_23-2151344984.jpg?_wi=2",
|
||||
},
|
||||
id: "t5", name: "Pedro Soto", handle: "@pedro", testimonial: "Excelente sushi y ramen.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-eating-sushi_23-2151344984.jpg"},
|
||||
]}
|
||||
showRating={true}
|
||||
title="Lo que dicen nuestros clientes"
|
||||
@@ -335,52 +201,34 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Nuestro Ambiente",
|
||||
description: "Diseño moderno y elegante.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blend-minimal-nordic-interior-design-with-japanese-wabi-sabi-style_23-2151160091.jpg",
|
||||
},
|
||||
title: "Nuestro Ambiente", description: "Diseño moderno y elegante.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blend-minimal-nordic-interior-design-with-japanese-wabi-sabi-style_23-2151160091.jpg"},
|
||||
items: [
|
||||
{
|
||||
icon: Camera,
|
||||
text: "Espacios únicos",
|
||||
},
|
||||
text: "Espacios únicos"},
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/composition-hawaiian-poke-bowl_23-2148873844.jpg?_wi=3",
|
||||
imageAlt: "modern japanese interior design",
|
||||
},
|
||||
{
|
||||
title: "Pasión por la cocina",
|
||||
description: "Preparación al momento.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lunch-break-elegant-man-office-businessman-white-shirt-man-eats-noodles_1157-39258.jpg",
|
||||
},
|
||||
title: "Pasión por la cocina", description: "Preparación al momento.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lunch-break-elegant-man-office-businessman-white-shirt-man-eats-noodles_1157-39258.jpg"},
|
||||
items: [
|
||||
{
|
||||
icon: ChefHat,
|
||||
text: "Expertos en sushi",
|
||||
},
|
||||
text: "Expertos en sushi"},
|
||||
],
|
||||
reverse: true,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-preparing-sushi-order-takeaway_23-2149050369.jpg?_wi=3",
|
||||
imageAlt: "modern japanese interior design",
|
||||
},
|
||||
{
|
||||
title: "Sabor auténtico",
|
||||
description: "La mejor calidad.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-colored-sushi-set-top-view_140725-5587.jpg",
|
||||
},
|
||||
title: "Sabor auténtico", description: "La mejor calidad.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-colored-sushi-set-top-view_140725-5587.jpg"},
|
||||
items: [
|
||||
{
|
||||
icon: Utensils,
|
||||
text: "Frescura garantizada",
|
||||
},
|
||||
text: "Frescura garantizada"},
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-ramen-with-chopsticks_23-2150606751.jpg?_wi=2",
|
||||
imageAlt: "modern japanese interior design",
|
||||
},
|
||||
]}
|
||||
title="Galería"
|
||||
@@ -392,8 +240,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "rotated-rays-animated",
|
||||
}}
|
||||
variant: "rotated-rays-animated"}}
|
||||
tag="Contacto"
|
||||
title="Reserva tu mesa"
|
||||
description="Déjanos tus datos y nos pondremos en contacto contigo para confirmar tu reservación."
|
||||
@@ -407,19 +254,13 @@ export default function LandingPage() {
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "#",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
href: "#", ariaLabel: "Instagram"},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "#",
|
||||
ariaLabel: "Facebook",
|
||||
},
|
||||
href: "#", ariaLabel: "Facebook"},
|
||||
{
|
||||
icon: MessageCircle,
|
||||
href: "#",
|
||||
ariaLabel: "WhatsApp",
|
||||
},
|
||||
href: "#", ariaLabel: "WhatsApp"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user