3 Commits

Author SHA1 Message Date
e2e9e580a5 Update src/app/page.tsx 2026-06-09 09:51:41 +00:00
176e2449e8 Update src/app/page.tsx 2026-06-09 09:51:17 +00:00
cbd8f0b303 Merge version_2 into main
Merge version_2 into main
2026-06-09 09:44:36 +00:00

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import MediaAbout from '@/components/sections/about/MediaAbout'; import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
@@ -63,7 +63,7 @@ export default function LandingPage() {
]} ]}
slides={[ slides={[
{ {
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-coffee-shop_1339-2395.jpg", imageAlt: "Plato de carne a la brasa"}, imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-coffee-shop_1339-2395.jpg?_wi=1", imageAlt: "Plato de carne a la brasa"},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/extreme-close-up-fried-churros_23-2148379637.jpg", imageAlt: "Variedad de tapas españolas"}, imageSrc: "http://img.b2bpic.net/free-photo/extreme-close-up-fried-churros_23-2148379637.jpg", imageAlt: "Variedad de tapas españolas"},
{ {
@@ -236,15 +236,54 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoReveal <FooterMedia
logoText="Bar La Brasa" logoText="Bar La Brasa"
leftLink={{ imageSrc="http://img.b2bpic.net/free-photo/abstract-blur-coffee-shop_1339-2395.jpg?_wi=2"
text: "Privacidad", href: "#"}} imageAlt="Ambiente acogedor del bar"
rightLink={{ columns={[
text: "Términos", href: "#"}} {
title: "Enlaces Rápidos", items: [
{
label: "Inicio", href: "#hero"},
{
label: "Menú", href: "#menu"},
{
label: "Sobre Nosotros", href: "#about-us"},
{
label: "Contacto", href: "#contact"},
]},
{
title: "Horario", items: [
{
label: "Martes - Domingo: 13:00 - 17:00", href: "#"},
{
label: "Martes - Sábado: 20:00 - 23:00", href: "#"},
{
label: "Lunes: Cerrado", href: "#"},
]},
{
title: "Ubicación", items: [
{
label: "Carrer Major 123, Pallejà", href: "https://maps.app.goo.gl/"},
{
label: "Barcelona, España", href: "https://maps.app.goo.gl/"},
{
label: "Tel: +34 930 123 456", href: "tel:+34930123456"},
]},
{
title: "Síguenos", items: [
{
label: "Facebook", href: "https://facebook.com/barlabrasa"},
{
label: "Instagram", href: "https://instagram.com/barlabrasa"},
{
label: "Twitter", href: "https://twitter.com/barlabrasa"},
]},
]}
copyrightText="© 2025 Bar La Brasa. Todos los derechos reservados."
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }