Merge version_1 into main #7
117
src/app/page.tsx
117
src/app/page.tsx
@@ -1,5 +1,4 @@
|
||||
'use client';
|
||||
|
||||
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||
@@ -10,128 +9,34 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" }
|
||||
];
|
||||
export default function Page() {
|
||||
const navItems = [{ name: 'Home', id: '/' }];
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ThemeProvider>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple navItems={navItems} brandName="Tasca Boca Santa" />
|
||||
<NavbarStyleApple navItems={navItems} brandName="Brand" />
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Tasca Boca Santa"
|
||||
description="A tasca mais querida dos Açores. Tradição no prato. Família à mesa."
|
||||
testimonials={[
|
||||
{ name: "Guest Review", handle: "@foodie", testimonial: "Autêntica comida caseira, ambiente familiar.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-appetizing-ramadan-meal_23-2151182449.jpg", imageAlt: "rustic portuguese tavern table candlelight" },
|
||||
{ name: "Local Patron", handle: "@visit", testimonial: "O dono é incrivelmente acolhedor.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/vintage-background_23-2151901332.jpg", imageAlt: "hand-drawn olive branch illustration rustic" },
|
||||
{ name: "Traveler", handle: "@trip", testimonial: "Deliciosas sugestões locais.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/gourmet-bruschetta-meat-close-up_23-2148516970.jpg", imageAlt: "traditional alcatra pot azorean stew" },
|
||||
{ name: "Açoriano", handle: "@local", testimonial: "A melhor alcatra da ilha, sem dúvida.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/strawberry-pie-with-red-syrup-fruits-white-plate_114579-28836.jpg", imageAlt: "polvo a lagareiro octopus dish" },
|
||||
{ name: "Food Blogger", handle: "@taste", testimonial: "Uma joia escondida com sabor a tradição.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-traditional-easter-soup_329181-1650.jpg", imageAlt: "roasted quail with rice dish" }
|
||||
]}
|
||||
buttons={[{ text: "Ver Menu", href: "#menu" }, { text: "Reservar Mesa", href: "tel:968518486" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-appetizing-ramadan-meal_23-2151182449.jpg"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-appetizing-ramadan-meal_23-2151182449.jpg", alt: "Guest 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/vintage-background_23-2151901332.jpg", alt: "Guest 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/gourmet-bruschetta-meat-close-up_23-2148516970.jpg", alt: "Guest 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/strawberry-pie-with-red-syrup-fruits-white-plate_114579-28836.jpg", alt: "Guest 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-traditional-easter-soup_329181-1650.jpg", alt: "Guest 5" }
|
||||
]}
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "Produtos Frescos" },
|
||||
{ type: "text", text: "Tradição Açoriana" },
|
||||
{ type: "text", text: "Vinhos Regionais" },
|
||||
{ type: "text", text: "Receitas de Família" },
|
||||
{ type: "text", text: "Ambiente Acolhedor" }
|
||||
]}
|
||||
/>
|
||||
<HeroBillboardTestimonial title="Title" description="Desc" background={{ variant: 'plain' }} testimonials={[]} />
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="Uma tasca com alma"
|
||||
description="O Senhor da Tasca Boca Santa abre as suas portas todos os dias com uma missão simples: servir comida verdadeira, feita com amor, com os melhores produtos dos Açores. Sem pressa. Com sabor. Com família."
|
||||
bulletPoints={[
|
||||
{ title: "4.9 ⭐ no Google", description: "119 avaliações apaixonadas" },
|
||||
{ title: "Local & Sazonal", description: "Produtos frescos todos os dias" },
|
||||
{ title: "Ambiente Familiar", description: "Sinta-se como em casa" },
|
||||
{ title: "Tradição Viva", description: "Respeito pelas receitas ancestrais" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/vintage-background_23-2151901332.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
<SplitAbout title="About" description="Desc" textboxLayout="default" useInvertedBackground={false} bulletPoints={[{ title: 'Point', description: 'Desc' }]} mediaAnimation="none" />
|
||||
</div>
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{ id: "1", name: "Alcatra", price: "18€", variant: "Carne", imageSrc: "http://img.b2bpic.net/free-photo/gourmet-bruschetta-meat-close-up_23-2148516970.jpg" },
|
||||
{ id: "2", name: "Polvo à Lagareiro", price: "20€", variant: "Mar", imageSrc: "http://img.b2bpic.net/free-photo/strawberry-pie-with-red-syrup-fruits-white-plate_114579-28836.jpg" },
|
||||
{ id: "3", name: "Codorna com Arroz", price: "16€", variant: "Carne", imageSrc: "http://img.b2bpic.net/free-photo/close-up-traditional-easter-soup_329181-1650.jpg" },
|
||||
{ id: "4", name: "Queijo da Ilha", price: "8€", variant: "Entrada", imageSrc: "http://img.b2bpic.net/free-photo/close-up-appetizing-ramadan-meal_23-2151182449.jpg" }
|
||||
]}
|
||||
title="O que não pode perder"
|
||||
description="Sugestões da casa baseadas na tradição açoriana."
|
||||
/>
|
||||
<ProductCardFour title="Products" description="Desc" gridVariant="bento-grid" animationType="none" textboxLayout="default" useInvertedBackground={false} />
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "f1", title: "Entradas", content: "Queijos locais, pão da terra, petiscos variados." },
|
||||
{ id: "f2", title: "Pratos do Mar", content: "Peixe fresco da costa, Polvo à Lagareiro." },
|
||||
{ id: "f3", title: "Pratos de Carne", content: "Alcatra tradicional, Codorna, bifes regionais." },
|
||||
{ id: "f4", title: "Reservas", content: "Recomendamos marcação prévia para fins de semana." }
|
||||
]}
|
||||
sideTitle="Ementa"
|
||||
sideDescription="Menu sujeito a alterações diárias conforme os produtos da época."
|
||||
faqsAnimation="blur-reveal"
|
||||
/>
|
||||
<FaqSplitText faqs={[{ id: '1', title: 'Q', content: 'A' }]} sideTitle="FAQ" faqsAnimation="none" useInvertedBackground={false} />
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
testimonial="O dono é incrivelmente acolhedor e explica todos os pratos. Porções generosas. Altamente recomendado!"
|
||||
rating={5}
|
||||
author="Michael Chen"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-appetizing-ramadan-meal_23-2151182449.jpg", alt: "Customer A" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/vintage-background_23-2151901332.jpg", alt: "Customer B" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/gourmet-bruschetta-meat-close-up_23-2148516970.jpg", alt: "Customer C" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/strawberry-pie-with-red-syrup-fruits-white-plate_114579-28836.jpg", alt: "Customer D" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-traditional-easter-soup_329181-1650.jpg", alt: "Customer E" }
|
||||
]}
|
||||
ratingAnimation="blur-reveal"
|
||||
avatarsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
<TestimonialCardFifteen testimonial="Great!" rating={5} author="User" avatars={[]} ratingAnimation="none" avatarsAnimation="none" useInvertedBackground={false} />
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Informações"
|
||||
title="Venha visitar-nos"
|
||||
description="Rua de Santo Espírito 7, Angra do Heroísmo. Tel: 968 518 486."
|
||||
/>
|
||||
<ContactCenter tag="Contact" title="Get in touch" description="Desc" useInvertedBackground={false} />
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Tasca Boca Santa"
|
||||
columns={[
|
||||
{ title: "Menu", items: [{ label: "Ementa", href: "#menu" }] },
|
||||
{ title: "Info", items: [{ label: "Reservas", href: "tel:968518486" }] }
|
||||
]}
|
||||
copyrightText="Feito com amor nos Açores 🌊"
|
||||
/>
|
||||
<FooterBaseReveal logoText="Brand" columns={[{ title: 'Links', items: [{ label: 'Home', href: '/' }] }]} />
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user