Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e341ef90f | |||
| fb02419fc6 | |||
| b6bdc4bef8 | |||
| 65e91c96ed | |||
| 6a380f7612 | |||
| 9d4274eb36 | |||
| 3addbcc038 | |||
| 046520487f | |||
| b136b24042 | |||
| 5d9b92a20e |
395
src/app/page.tsx
395
src/app/page.tsx
@@ -5,14 +5,14 @@ import ReactLenis from "lenis/react";
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
|
||||
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import { Calendar, Leaf, Music, Users, Utensils, Wine } from "lucide-react";
|
||||
import { Calendar, Leaf, Music, Users, Utensils, Wine, LayoutDashboard, BarChart3, Settings, LogOut } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,159 +32,49 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Início", id: "hero" },
|
||||
{ name: "Sobre", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Depoimentos", id: "testimonials" },
|
||||
{ name: "Contato", id: "contact" },
|
||||
]}
|
||||
brandName="Lago"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
<HeroBillboardDashboard
|
||||
title="Sabores Requintados, Noites Inesquecíveis."
|
||||
description="O Lago Gastrobar une a culinária contemporânea e uma atmosfera social vibrante no coração da cidade."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
buttons={[{ text: "Ver Menu", href: "#menu" }]}
|
||||
dashboard={{
|
||||
title: "Lago Gastrobar", logoIcon: Wine,
|
||||
sidebarItems: [{ icon: LayoutDashboard, active: true }, { icon: BarChart3 }, { icon: Settings }, { icon: LogOut }],
|
||||
buttons: [{ text: "Configurações", href: "#" }],
|
||||
stats: [
|
||||
{ title: "Visitantes", values: [15000, 15000, 15000], description: "Clientes satisfeitos" },
|
||||
{ title: "Rótulos", values: [120, 120, 120], description: "Coleção Premium" },
|
||||
{ title: "Menus", values: [24, 24, 24], description: "Criações sazonais" }
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDDjUrQ95kEtXrWfooX8eJV7BY/uploaded-1779705044061-1tvfg3fo.png?_wi=1", listItems: [
|
||||
{ icon: Utensils, title: "Ribeye Maturado", status: "Disponível" },
|
||||
{ icon: Utensils, title: "Vieiras Seladas", status: "Destaque" }
|
||||
]
|
||||
}}
|
||||
title="Exquisite Flavors, Unforgettable Nights."
|
||||
description="Lago Gastrobar brings together contemporary culinary artistry and a vibrant social atmosphere in the heart of the city."
|
||||
leftCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-library-campus-with-huge-database-collection-study-books_482257-127027.jpg",
|
||||
imageAlt: "Lago Interior",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/macaron-glass_1339-7100.jpg",
|
||||
imageAlt: "Gourmet Dish",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-shop-with-blurred-effect_23-2148164705.jpg",
|
||||
imageAlt: "Lago Interior",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-having-date-together-luxurious-restaurant_23-2150517420.jpg",
|
||||
imageAlt: "Gourmet Dish",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157792.jpg",
|
||||
imageAlt: "Lago Interior",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-kissing-man-with-flowers-cheek_23-2148014453.jpg",
|
||||
imageAlt: "Gourmet Dish",
|
||||
},
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-refreshing-alcoholic-drinks-table_23-2148617557.jpg",
|
||||
imageAlt: "Gourmet Dish",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg",
|
||||
imageAlt: "Lago Interior",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegantly-dressed-couple-handsome-stylish-male-charming-brunette-woman-sitting-together-luxury-restaurant_613910-18589.jpg",
|
||||
imageAlt: "Gourmet Dish",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glamour-african-american-woman-wear-fashionable-snake-dress-sunglasses-pose-restaurant_627829-5449.jpg",
|
||||
imageAlt: "Lago Interior",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tuna-sushi_1203-3744.jpg",
|
||||
imageAlt: "Gourmet Dish",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157774.jpg",
|
||||
imageAlt: "Lago Interior",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
]}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cocktail-refreshment-neo-futuristic-style_23-2151370299.jpg",
|
||||
alt: "Guest 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/bartender-with-glass_23-2147680734.jpg",
|
||||
alt: "Guest 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-curly-woman-enjoying-her-wine-bar_627829-6871.jpg",
|
||||
alt: "Guest 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/view-dj-equipment-electronics_23-2149658374.jpg",
|
||||
alt: "Guest 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-champagne-glasses-with-olives_23-2148356460.jpg",
|
||||
alt: "Guest 5",
|
||||
},
|
||||
]}
|
||||
avatarText="Join 15k+ satisfied guests"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/side-view-man-sitting-bar-counter_23-2147861962.jpg",
|
||||
alt: "Brand 1",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/big-event-hall-interior-restaurant_114579-2079.jpg",
|
||||
alt: "Brand 2",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/young-attractive-woman-striped-trench-coat-happily-talking-cellphone-sitting-near-big-window-while-spending-time-modern-cafe_574295-4851.jpg",
|
||||
alt: "Brand 3",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/man-hugging-with-cheerful-woman-restaurant_23-2148016777.jpg",
|
||||
alt: "Brand 4",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598347.jpg",
|
||||
alt: "Brand 5",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={false}
|
||||
tag="Our Story"
|
||||
title="Crafted with Passion, Served with Heart."
|
||||
description="At Lago, every ingredient is a choice, every recipe a narrative. We curate experiences that linger long after the final bite."
|
||||
subdescription="From farm-fresh produce to artisan spirits, our focus remains on quality, community, and the art of the gastrobar."
|
||||
tag="Nossa História"
|
||||
title="Criado com Paixão, Servido com Coração."
|
||||
description="No Lago, cada ingrediente é uma escolha cuidadosa e cada receita, uma narrativa. Criamos experiências que permanecem na memória."
|
||||
subdescription="Desde produtos frescos da estação até destilados artesanais, nosso foco é a qualidade e a comunidade."
|
||||
icon={Utensils}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/low-angle-friends-drinking-coffee_23-2148395430.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDDjUrQ95kEtXrWfooX8eJV7BY/uploaded-1779705044061-9myzp0bh.png?_wi=2"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -194,24 +84,12 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
icon: Wine,
|
||||
title: "Curated Wine Selection",
|
||||
description: "Hand-picked vintages sourced from renowned vineyards across the world.",
|
||||
},
|
||||
{
|
||||
icon: Leaf,
|
||||
title: "Farm-to-Table Freshness",
|
||||
description: "Supporting local growers with seasonal ingredients served at their peak.",
|
||||
},
|
||||
{
|
||||
icon: Music,
|
||||
title: "Atmospheric Vibes",
|
||||
description: "Live jazz and curated soundtracks for the perfect evening backdrop.",
|
||||
},
|
||||
{ icon: Wine, title: "Seleção de Vinhos", description: "Rótulos escolhidos de vinícolas renomadas." },
|
||||
{ icon: Leaf, title: "Do Campo à Mesa", description: "Ingredientes locais frescos em cada temporada." },
|
||||
{ icon: Music, title: "Ambiente Envolvente", description: "Jazz ao vivo e curadoria musical para o seu jantar." },
|
||||
]}
|
||||
title="Why Choose Lago?"
|
||||
description="Discover what sets our gastrobar apart from the ordinary."
|
||||
title="Por que o Lago?"
|
||||
description="Descubra o que torna nosso gastrobar especial."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -222,45 +100,13 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Aged Ribeye",
|
||||
price: "$42",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cutting-biscuit-with-whipping-cream-berries-with-cutlery_114579-3648.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Pan-Seared Scallops",
|
||||
price: "$38",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salmon-fish-fillet-grilled-steak_74190-42.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Truffle Pasta",
|
||||
price: "$32",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-pasta-fork_23-2147749504.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Signature Spritz",
|
||||
price: "$16",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-fruit-cocktail-orange-peel-with-apple-lemon-wedges-cutting-board_141793-13002.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Artisan Cheese Plate",
|
||||
price: "$28",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-close-up-view-cake-cake-with-berries-waffles-bowls-colorful-sweets-cookies_140725-71838.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Dark Chocolate Ganache",
|
||||
price: "$14",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-fork-delicious-fresh-chocolate-dessert-restaurant_23-2148001620.jpg",
|
||||
},
|
||||
{ id: "1", name: "Ribeye Maturado", price: "R$ 180", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDDjUrQ95kEtXrWfooX8eJV7BY/uploaded-1779705044061-v78exxbl.png?_wi=2" },
|
||||
{ id: "2", name: "Vieiras Seladas", price: "R$ 160", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDDjUrQ95kEtXrWfooX8eJV7BY/uploaded-1779705044061-1tvfg3fo.png?_wi=2" },
|
||||
{ id: "3", name: "Pasta ao Trufo", price: "R$ 140", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDDjUrQ95kEtXrWfooX8eJV7BY/uploaded-1779705044061-9myzp0bh.png?_wi=3" },
|
||||
{ id: "4", name: "Spritz Exclusivo", price: "R$ 45", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDDjUrQ95kEtXrWfooX8eJV7BY/uploaded-1779705044061-elqyp8mr.png?_wi=2" },
|
||||
]}
|
||||
title="Signature Creations"
|
||||
description="A curated collection of culinary masterpieces designed to surprise."
|
||||
title="Criações do Chef"
|
||||
description="Uma curadoria de sabores desenhada para surpreender seus sentidos."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -271,30 +117,12 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "15K+",
|
||||
title: "Happy Guests",
|
||||
description: "Served over the past year",
|
||||
icon: Users,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "24",
|
||||
title: "Seasonal Menus",
|
||||
description: "Curated dishes annually",
|
||||
icon: Calendar,
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "120",
|
||||
title: "Premium Labels",
|
||||
description: "Spirits & fine wines",
|
||||
icon: Wine,
|
||||
},
|
||||
{ id: "m1", value: "15K+", title: "Clientes Felizes", description: "Atendidos com excelência", icon: Users },
|
||||
{ id: "m2", value: "24", title: "Menus Sazonais", description: "Lançamentos anuais", icon: Calendar },
|
||||
{ id: "m3", value: "120", title: "Rótulos Premium", description: "Espirituosos e vinhos", icon: Wine },
|
||||
]}
|
||||
title="Lago by the Numbers"
|
||||
description="A testament to our growing community and consistent quality."
|
||||
title="Lago em Números"
|
||||
description="Uma prova de nossa dedicação à alta gastronomia."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -305,27 +133,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
members={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Marco V.",
|
||||
role: "Executive Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crazy-young-male-chef-wearing-uniform-looking-up-making-fish-face-isolated-brown-background_141793-133537.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Elena R.",
|
||||
role: "General Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-professional-server-posing-with-confidence-with-arms-crossed-studio_482257-100166.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Sandro L.",
|
||||
role: "Head Mixologist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-as-bartender_23-2150346979.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Marco V.", role: "Chef Executivo", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDDjUrQ95kEtXrWfooX8eJV7BY/uploaded-1779705044061-84fg2m4e.png?_wi=2" },
|
||||
{ id: "t2", name: "Elena R.", role: "Gerente Geral", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDDjUrQ95kEtXrWfooX8eJV7BY/uploaded-1779705044061-1tvfg3fo.png?_wi=3" },
|
||||
{ id: "t3", name: "Sandro L.", role: "Mixologista", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EDDjUrQ95kEtXrWfooX8eJV7BY/uploaded-1779705044061-v78exxbl.png?_wi=3" },
|
||||
]}
|
||||
title="The Masters Behind Lago"
|
||||
description="Dedicated individuals bringing passion to your plate and glass."
|
||||
title="Nossa Equipe"
|
||||
description="Talentos dedicados a elevar sua experiência gastronômica."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -335,67 +148,26 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
handle: "@sarah_j",
|
||||
testimonial: "The ribeye was cooked to perfection. A truly refined atmosphere.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael C.",
|
||||
handle: "@m_chen",
|
||||
testimonial: "Best craft cocktails in the city. Staff is incredibly welcoming.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-having-laugh_23-2148395406.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
handle: "@emily_r",
|
||||
testimonial: "I love the farm-to-table focus here. Very fresh and tasty.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-friends-enjoying-dinner-party_52683-132625.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David K.",
|
||||
handle: "@david_k",
|
||||
testimonial: "Fantastic service for our corporate dinner. Highly recommended.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-joyful-man-being-glad-hear-old-best-friend-mobile-phone_273609-8929.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jenny L.",
|
||||
handle: "@jenny_l",
|
||||
testimonial: "Charming gastrobar with great vibes. Will definitely return.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598351.jpg",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", handle: "@sarah_j", testimonial: "O ribeye estava divino. Atmosfera extremamente refinada.", rating: 5 },
|
||||
{ id: "2", name: "Michael C.", handle: "@m_chen", testimonial: "Melhores drinks da cidade. Atendimento nota 10!", rating: 5 },
|
||||
{ id: "3", name: "Emily R.", handle: "@emily_r", testimonial: "Amo o foco em ingredientes locais. Tudo fresco.", rating: 5 },
|
||||
]}
|
||||
showRating={true}
|
||||
title="Guest Stories"
|
||||
description="What our patrons say about their experience."
|
||||
title="O Que Dizem de Nós"
|
||||
description="Histórias de nossos clientes habituais."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
tag="Visit Us"
|
||||
title="Ready to Experience Lago?"
|
||||
description="Book a table or reach out to organize your next private event."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Localização e Contato"
|
||||
title="Venha nos Conhecer"
|
||||
description="Estamos localizados no coração da cidade. Faça sua reserva ou fale com nossa equipe."
|
||||
buttons={[
|
||||
{
|
||||
text: "Reserve a Table",
|
||||
href: "#",
|
||||
},
|
||||
{ text: "Ver no Mapa", href: "https://maps.app.goo.gl/4XVaGshB3Qd45opd7" },
|
||||
{ text: "Reservar Mesa", href: "#" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -403,42 +175,9 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Reservations",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Events",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Use",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Menu", href: "#menu" }, { label: "Sobre", href: "#about" }] },
|
||||
{ items: [{ label: "Reservas", href: "#" }, { label: "Eventos", href: "#" }] },
|
||||
{ items: [{ label: "Políticas", href: "#" }, { label: "Termos", href: "#" }] },
|
||||
]}
|
||||
logoText="Lago"
|
||||
/>
|
||||
@@ -446,4 +185,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user