Merge version_1 into main #3
@@ -11,8 +11,8 @@ import { Playfair_Display, Inter } from "next/font/google";
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'La Branca del Quebracho | Parrilla Argentina en Reus',
|
||||
description: 'La mejor experiencia de parrilla argentina en el corazón de Reus. Carne de alta calidad en un ambiente cálido.',
|
||||
title: 'Webild - Digital Solutions',
|
||||
description: 'Professional digital agency services for modern businesses.',
|
||||
};
|
||||
|
||||
const playfair = Playfair_Display({ variable: "--font-playfair", subsets: ["latin"] });
|
||||
|
||||
124
src/app/page.tsx
124
src/app/page.tsx
@@ -8,106 +8,86 @@ import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { Star, Shield, ArrowRight } from 'lucide-react';
|
||||
|
||||
export default function Home() {
|
||||
const navItems = [{ name: "Home", id: "/" }];
|
||||
const navItems = [{ name: 'Home', id: '/' }];
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered navItems={navItems} brandName="La Branca del Quebracho" />
|
||||
<NavbarStyleCentered navItems={navItems} brandName="Webild" />
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{ variant: "radial-gradient" }}
|
||||
logoText="La Branca del Quebracho"
|
||||
description="La mejor parrilla argentina de Reus. Autenticidad, fuego y brasas en cada bocado."
|
||||
buttons={[
|
||||
{ text: "Reservar mesa", href: "#reservas" },
|
||||
{ text: "Ver carta", href: "#especialidades" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/grilled-steak-skewer-served-rustic-plate-generative-ai_188544-8374.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
<HeroLogoBillboard
|
||||
logoText="Webild"
|
||||
description="Elevating your digital presence with precision and style."
|
||||
buttons={[{ text: 'Get Started', href: '#reservas' }]}
|
||||
background={{ variant: 'gradient-bars' }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="especialidades" data-section="especialidades">
|
||||
<ProductCardFour
|
||||
<ProductCardFour
|
||||
title="Our Specialities"
|
||||
description="Explore our curated selection of digital solutions."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Parrillada", price: "24€", variant: "Variedad de cortes", imageSrc: "http://img.b2bpic.net/free-photo/half-grilled-half-ready-raw-steaks-grill_114579-1980.jpg" },
|
||||
{ id: "p2", name: "Empanadas", price: "3€", variant: "Artesanales", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-spanish-tortilla-still-life_23-2150246010.jpg" },
|
||||
{ id: "p3", name: "Milanesa", price: "18€", variant: "Clásica Napolitana", imageSrc: "http://img.b2bpic.net/free-photo/cachopo-traditional-food-asturias-spain-breaded-fillet-meat-wooden-table_123827-35313.jpg" },
|
||||
{ id: "p4", name: "Bife Angosto", price: "22€", variant: "Corte premium", imageSrc: "http://img.b2bpic.net/free-photo/fried-piece-meat-potatoes-fried-tomato_140725-6649.jpg" }
|
||||
{ id: '1', name: 'Web Design', price: 'Contact for Quote', variant: 'Premium', imageSrc: 'https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&q=80&w=800' },
|
||||
{ id: '2', name: 'UX Strategy', price: 'Contact for Quote', variant: 'Professional', imageSrc: 'https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&q=80&w=800' },
|
||||
{ id: '3', name: 'App Development', price: 'Contact for Quote', variant: 'Enterprise', imageSrc: 'https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&q=80&w=800' }
|
||||
]}
|
||||
title="Nuestras Especialidades"
|
||||
description="Lo mejor de nuestra parrilla."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="sobre-nosotros" data-section="sobre-nosotros">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Nuestra Pasión Argentina"
|
||||
buttons={[{ text: "Conócenos", href: "#" }]}
|
||||
<TextAbout
|
||||
title="About Our Journey"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="reseñas" data-section="reseñas">
|
||||
<TestimonialCardSixteen
|
||||
<TestimonialCardSixteen
|
||||
title="Client Success Stories"
|
||||
description="Hear from our valued partners."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Juan Perez", role: "Cliente", company: "Reus", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-smiling-with-fingers-corners-his-lips_1187-2608.jpg" },
|
||||
{ id: "2", name: "Maria Lopez", role: "Cliente", company: "Reus", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5040.jpg" },
|
||||
{ id: "3", name: "Carlos Gomez", role: "Cliente", company: "Reus", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-hugging_23-2148060607.jpg" },
|
||||
{ id: "4", name: "Ana Sanchez", role: "Cliente", company: "Reus", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-brunette-woman-trench-coat-red-dress-stylish-beret-waves-hand-greeting-smiles-widely-sits-street-cafe_197531-29300.jpg" },
|
||||
{ id: "5", name: "Luis Diaz", role: "Cliente", company: "Reus", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg" }
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "4.9", label: "Estrellas" },
|
||||
{ value: "226", label: "Reseñas" },
|
||||
{ value: "100%", label: "Autenticidad" }
|
||||
]}
|
||||
title="Opiniones de nuestros comensales"
|
||||
description="226 reseñas, 4.9 estrellas"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="reservas" data-section="reservas">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
text="Reservas: 625 17 00 29. Abierto Mié-Dom. ¡Te esperamos!"
|
||||
buttons={[{ text: "WhatsApp", href: "https://wa.me/34625170029" }]}
|
||||
kpiItems={[
|
||||
{ value: '100+', label: 'Projects' },
|
||||
{ value: '98%', label: 'Satisfaction' },
|
||||
{ value: '50+', label: 'Partners' }
|
||||
]}
|
||||
testimonials={[
|
||||
{ id: '1', name: 'Jane Doe', role: 'CEO', company: 'Tech Corp', rating: 5 }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="reservas" data-section="reservas">
|
||||
<ContactText
|
||||
text="Ready to collaborate? Reach out today."
|
||||
background={{ variant: 'plain' }}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="La Branca del Quebracho"
|
||||
columns={[
|
||||
{ title: "Contacto", items: [{ label: "625 17 00 29", href: "tel:625170029" }, { label: "Carrer Ample 45, Reus", href: "#" }] },
|
||||
{ title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] }
|
||||
]}
|
||||
<FooterBaseCard
|
||||
logoText="Webild"
|
||||
columns={[{ title: 'Navigation', items: [{ label: 'Home', href: '/' }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user