Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 50a12577be | |||
| 88eda786d0 | |||
| 5a4d575f90 | |||
| 5fd42d75c3 | |||
| cedbd6cd73 | |||
| 548c9bcf84 | |||
| 80ac29c6c0 | |||
| 1dad5065a9 |
170
src/app/la-carta/page.tsx
Normal file
170
src/app/la-carta/page.tsx
Normal file
@@ -0,0 +1,170 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
|
import FeatureCardTwentyEight from "@/components/sections/feature/FeatureCardTwentyEight";
|
||||||
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
|
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
|
||||||
|
import { Sparkles, ArrowUpRight } from "lucide-react";
|
||||||
|
|
||||||
|
export default function LaCartaPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="none"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="metallic"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="Webild"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "La Carta", id: "/la-carta" },
|
||||||
|
{ name: "Eventos", id: "/eventos" },
|
||||||
|
{ name: "Reservas", id: "/reservas" },
|
||||||
|
{ name: "Contact", id: "/contact" }
|
||||||
|
]}
|
||||||
|
button={{ text: "Get Started", href: "#contact" }}
|
||||||
|
/>
|
||||||
|
<HeroSplitDoubleCarousel
|
||||||
|
title="Explora Nuestra Carta"
|
||||||
|
description="Una selección exquisita de platos y bebidas para deleitar tu paladar."
|
||||||
|
tag="Sabores Auténticos"
|
||||||
|
tagIcon={Sparkles}
|
||||||
|
tagAnimation="slide-up"
|
||||||
|
background={{ variant: "canvas-reveal" }}
|
||||||
|
buttons={[
|
||||||
|
{ text: "Ver Eventos", href: "/eventos" },
|
||||||
|
{ text: "Reservar Mesa", href: "/reservas" },
|
||||||
|
]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
|
carouselPosition="right"
|
||||||
|
leftCarouselItems={[
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "Plato de tortilla de patatas" },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Copa de vino tinto" },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp", imageAlt: "Mesa con varios platos de tapas" },
|
||||||
|
]}
|
||||||
|
rightCarouselItems={[
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "Paella recién hecha" },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-5.webp", imageAlt: "Postre de tarta de queso" },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp", imageAlt: "Bebidas refrescantes" },
|
||||||
|
]}
|
||||||
|
carouselItemClassName="!aspect-[4/5]"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div id="tapas-y-aperitivos" data-section="tapas-y-aperitivos">
|
||||||
|
<FeatureCardTwentyEight
|
||||||
|
title="Tapas y Aperitivos"
|
||||||
|
description="Perfectos para empezar o para compartir con amigos."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{ id: "tortilla", title: "Tortilla de Patatas", subtitle: "La auténtica tortilla española, jugosa y deliciosa.", category: "Tapa", value: "8€" },
|
||||||
|
{ id: "croquetas", title: "Croquetas Caseras", subtitle: "De jamón ibérico o boletus, crujientes por fuera y cremosas por dentro.", category: "Tapa", value: "7€" },
|
||||||
|
{ id: "gambas", title: "Gambas al Ajillo", subtitle: "Gambas frescas salteadas con ajo y guindilla, servidas en cazuela de barro.", category: "Tapa", value: "12€" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="platos-principales" data-section="platos-principales">
|
||||||
|
<FeatureCardTwentyEight
|
||||||
|
title="Platos Principales"
|
||||||
|
description="Nuestras especialidades para un almuerzo o cena inolvidables."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{ id: "paella", title: "Paella Valenciana", subtitle: "Arroz con pollo, conejo, judías verdes y garrofón, cocinado a la leña.", category: "Principal", value: "18€" },
|
||||||
|
{ id: "chuleton", title: "Chuletón de Ternera", subtitle: "Tierna chuleta de ternera a la parrilla, acompañada de patatas y pimientos.", category: "Principal", value: "25€" },
|
||||||
|
{ id: "merluza", title: "Merluza a la Vasca", subtitle: "Lomo de merluza fresco con salsa verde, almejas y espárragos blancos.", category: "Principal", value: "20€" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="ensaladas-frescas" data-section="ensaladas-frescas">
|
||||||
|
<FeatureCardTwentyEight
|
||||||
|
title="Ensaladas Frescas"
|
||||||
|
description="Ligeras y saludables, ideales para acompañar o como plato único."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{ id: "ensalada-mixta", title: "Ensalada Mixta", subtitle: "Lechuga, tomate, cebolla, atún, huevo cocido y aceitunas, con vinagreta casera.", category: "Ensalada", value: "10€" },
|
||||||
|
{ id: "ensalada-cabra", title: "Ensalada de Queso de Cabra", subtitle: "Mézclum de lechugas, rulo de cabra gratinado, frutos secos y vinagreta de miel.", category: "Ensalada", value: "12€" },
|
||||||
|
{ id: "ensalada-cesar", title: "Ensalada César", subtitle: "Pechuga de pollo a la plancha, lechuga romana, picatostes, parmesano y salsa César.", category: "Ensalada", value: "11€" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="postres-caseros" data-section="postres-caseros">
|
||||||
|
<FeatureCardTwentyEight
|
||||||
|
title="Postres Caseros"
|
||||||
|
description="El broche de oro perfecto para cualquier comida."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{ id: "tarta-queso", title: "Tarta de Queso", subtitle: "Suave tarta de queso con base de galleta y coulis de frutos rojos.", category: "Postre", value: "6€" },
|
||||||
|
{ id: "arroz-leche", title: "Arroz con Leche", subtitle: "Tradicional arroz con leche asturiano, espolvoreado con canela.", category: "Postre", value: "5€" },
|
||||||
|
{ id: "flan", title: "Flan de Huevo", subtitle: "Flan casero con caramelo líquido, clásico y delicioso.", category: "Postre", value: "4.50€" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="bebidas" data-section="bebidas">
|
||||||
|
<FeatureCardTwentyEight
|
||||||
|
title="Bebidas"
|
||||||
|
description="Una cuidada selección para acompañar tu experiencia gastronómica."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{ id: "agua", title: "Agua Mineral", subtitle: "Agua mineral natural, con o sin gas.", category: "Bebida", value: "2.50€" },
|
||||||
|
{ id: "refrescos", title: "Refrescos", subtitle: "Coca-Cola, Fanta, Sprite, etc.", category: "Bebida", value: "3€" },
|
||||||
|
{ id: "cerveza", title: "Cerveza Mahou", subtitle: "Cerveza de barril Mahou Clásica o Mahou Cinco Estrellas.", category: "Bebida", value: "3.50€" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<FooterBase
|
||||||
|
logoText="Webild"
|
||||||
|
copyrightText="© 2026 | Webild"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "La Carta", href: "/la-carta" },
|
||||||
|
{ label: "Eventos", href: "/eventos" },
|
||||||
|
{ label: "Reservas", href: "/reservas" },
|
||||||
|
{ label: "Contact", href: "/contact" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Servicios", items: [
|
||||||
|
{ label: "Menú", href: "/la-carta" },
|
||||||
|
{ label: "Eventos Especiales", href: "/eventos" },
|
||||||
|
{ label: "Reservas Online", href: "/reservas" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Connect", items: [
|
||||||
|
{ label: "Instagram", href: "#" },
|
||||||
|
{ label: "Facebook", href: "#" },
|
||||||
|
{ label: "Twitter", href: "#" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
150
src/app/page.tsx
150
src/app/page.tsx
@@ -13,6 +13,8 @@ import FaqBase from "@/components/sections/faq/FaqBase";
|
|||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||||
|
import FeatureCardTwentyEight from "@/components/sections/feature/FeatureCardTwentyEight";
|
||||||
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||||
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react";
|
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react";
|
||||||
|
|
||||||
export default function WebAgency2Page() {
|
export default function WebAgency2Page() {
|
||||||
@@ -36,7 +38,9 @@ export default function WebAgency2Page() {
|
|||||||
{ name: "Work", id: "work" },
|
{ name: "Work", id: "work" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Eventos", id: "eventos" },
|
||||||
|
{ name: "Reservas", id: "reservas" },
|
||||||
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Get Started", href: "#contact" }}
|
button={{ text: "Get Started", href: "#contact" }}
|
||||||
/>
|
/>
|
||||||
@@ -68,6 +72,20 @@ export default function WebAgency2Page() {
|
|||||||
]}
|
]}
|
||||||
carouselItemClassName="!aspect-[4/5]"
|
carouselItemClassName="!aspect-[4/5]"
|
||||||
/>
|
/>
|
||||||
|
<div id="eventos" data-section="eventos">
|
||||||
|
<FeatureCardTwentyEight
|
||||||
|
title="EVENTOS DE LA SEMANA"
|
||||||
|
description="No te pierdas nuestros eventos especiales y disfruta de la mejor compañía."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{ id: "flamenco", title: "Jueves Flamenco en Vivo", subtitle: "Disfruta de la pasión del flamenco", category: "Música", value: "21:30h" },
|
||||||
|
{ id: "vermut", title: "Domingos de Aperitivo con Vermut", subtitle: "Relájate con el mejor aperitivo", category: "Gastronomía", value: "12:00h" },
|
||||||
|
{ id: "matches", title: "Partidos de Fútbol en Pantalla Gigante", subtitle: "Vive la emoción del fútbol", category: "Deporte", value: "Real Madrid/Atleti" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<FeatureBento
|
<FeatureBento
|
||||||
title="Our Services"
|
title="Our Services"
|
||||||
description="We offer a full suite of digital services to help your brand stand out online."
|
description="We offer a full suite of digital services to help your brand stand out online."
|
||||||
@@ -78,28 +96,18 @@ export default function WebAgency2Page() {
|
|||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "SEO",
|
title: "SEO", description: "We optimize your website to rank higher on search engines and drive organic traffic.", bentoComponent: "marquee", centerIcon: Search,
|
||||||
description: "We optimize your website to rank higher on search engines and drive organic traffic.",
|
variant: "text", texts: ["Keywords", "Backlinks", "Meta Tags", "Organic Traffic", "Rankings", "Analytics", "SERP", "Indexing"],
|
||||||
bentoComponent: "marquee",
|
|
||||||
centerIcon: Search,
|
|
||||||
variant: "text",
|
|
||||||
texts: ["Keywords", "Backlinks", "Meta Tags", "Organic Traffic", "Rankings", "Analytics", "SERP", "Indexing"],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Web Development",
|
title: "Web Development", description: "Custom-built websites that are fast, responsive, and designed to convert.", bentoComponent: "media-stack", items: [
|
||||||
description: "Custom-built websites that are fast, responsive, and designed to convert.",
|
|
||||||
bentoComponent: "media-stack",
|
|
||||||
items: [
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "Web project - AgentFlow AI platform" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "Web project - AgentFlow AI platform" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Web project - Architecture studio" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Web project - Architecture studio" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp", imageAlt: "Web project - Summit Roofing" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp", imageAlt: "Web project - Summit Roofing" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Branding",
|
title: "Branding", description: "Build a memorable brand identity that resonates with your audience.", bentoComponent: "media-stack", items: [
|
||||||
description: "Build a memorable brand identity that resonates with your audience.",
|
|
||||||
bentoComponent: "media-stack",
|
|
||||||
items: [
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "Brand project 1" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "Brand project 1" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "Brand project 2" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "Brand project 2" },
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Brand project 3" },
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Brand project 3" },
|
||||||
@@ -117,45 +125,20 @@ export default function WebAgency2Page() {
|
|||||||
cardClassName="!h-auto aspect-video"
|
cardClassName="!h-auto aspect-video"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Umbra Skincare",
|
title: "Umbra Skincare", description: "Luxury fragrance e-commerce", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "Umbra Skincare website", buttonIcon: ArrowUpRight,
|
||||||
description: "Luxury fragrance e-commerce",
|
buttonHref: "#"},
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp",
|
|
||||||
imageAlt: "Umbra Skincare website",
|
|
||||||
buttonIcon: ArrowUpRight,
|
|
||||||
buttonHref: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Luxuria Travel",
|
title: "Luxuria Travel", description: "Bespoke luxury travel experiences", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Luxuria Travel website", buttonIcon: ArrowUpRight,
|
||||||
description: "Bespoke luxury travel experiences",
|
buttonHref: "#"},
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp",
|
|
||||||
imageAlt: "Luxuria Travel website",
|
|
||||||
buttonIcon: ArrowUpRight,
|
|
||||||
buttonHref: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Dental Care",
|
title: "Dental Care", description: "Premier dental practice", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Luxury Dental Care website", buttonIcon: ArrowUpRight,
|
||||||
description: "Premier dental practice",
|
buttonHref: "#"},
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp",
|
|
||||||
imageAlt: "Luxury Dental Care website",
|
|
||||||
buttonIcon: ArrowUpRight,
|
|
||||||
buttonHref: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Summit Roofing",
|
title: "Summit Roofing", description: "Professional roofing services", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", imageAlt: "Summit Roofing website", buttonIcon: ArrowUpRight,
|
||||||
description: "Professional roofing services",
|
buttonHref: "#"},
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp",
|
|
||||||
imageAlt: "Summit Roofing website",
|
|
||||||
buttonIcon: ArrowUpRight,
|
|
||||||
buttonHref: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Dubai Real Estate",
|
title: "Dubai Real Estate", description: "Luxury property listings", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", imageAlt: "Dubai Real Estate website", buttonIcon: ArrowUpRight,
|
||||||
description: "Luxury property listings",
|
buttonHref: "#"},
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp",
|
|
||||||
imageAlt: "Dubai Real Estate website",
|
|
||||||
buttonIcon: ArrowUpRight,
|
|
||||||
buttonHref: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<FeatureBento
|
<FeatureBento
|
||||||
@@ -166,14 +149,9 @@ export default function WebAgency2Page() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "All Devices Optimization",
|
title: "All Devices Optimization", description: "Pixel-perfect websites that look stunning on every screen size and device.", bentoComponent: "phone", statusIcon: Lock,
|
||||||
description: "Pixel-perfect websites that look stunning on every screen size and device.",
|
|
||||||
bentoComponent: "phone",
|
|
||||||
statusIcon: Lock,
|
|
||||||
alertIcon: Monitor,
|
alertIcon: Monitor,
|
||||||
alertTitle: "Responsive check",
|
alertTitle: "Responsive check", alertMessage: "All breakpoints passed", apps: [
|
||||||
alertMessage: "All breakpoints passed",
|
|
||||||
apps: [
|
|
||||||
{ name: "Phone", icon: Phone },
|
{ name: "Phone", icon: Phone },
|
||||||
{ name: "SMS", icon: MessageCircle },
|
{ name: "SMS", icon: MessageCircle },
|
||||||
{ name: "Books", icon: BookOpen },
|
{ name: "Books", icon: BookOpen },
|
||||||
@@ -185,29 +163,17 @@ export default function WebAgency2Page() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Secure Hosting",
|
title: "Secure Hosting", description: "Enterprise-grade security and 99.9% uptime for your website.", bentoComponent: "reveal-icon", icon: Shield,
|
||||||
description: "Enterprise-grade security and 99.9% uptime for your website.",
|
|
||||||
bentoComponent: "reveal-icon",
|
|
||||||
icon: Shield,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Fast Turnaround",
|
title: "Fast Turnaround", description: "From concept to launch in record time without sacrificing quality.", bentoComponent: "timeline", heading: "Project Launch", subheading: "Week 1", items: [
|
||||||
description: "From concept to launch in record time without sacrificing quality.",
|
|
||||||
bentoComponent: "timeline",
|
|
||||||
heading: "Project Launch",
|
|
||||||
subheading: "Week 1",
|
|
||||||
items: [
|
|
||||||
{ label: "Discovery & wireframes", detail: "Day 1-3" },
|
{ label: "Discovery & wireframes", detail: "Day 1-3" },
|
||||||
{ label: "Design & development", detail: "Day 4-10" },
|
{ label: "Design & development", detail: "Day 4-10" },
|
||||||
{ label: "Testing & deployment", detail: "Day 11-14" },
|
{ label: "Testing & deployment", detail: "Day 11-14" },
|
||||||
],
|
],
|
||||||
completedLabel: "Live",
|
completedLabel: "Live"},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Seamless Integrations",
|
title: "Seamless Integrations", description: "Connect with the tools you already use — CRMs, analytics, payments, and more.", bentoComponent: "orbiting-icons", centerIcon: Puzzle,
|
||||||
description: "Connect with the tools you already use — CRMs, analytics, payments, and more.",
|
|
||||||
bentoComponent: "orbiting-icons",
|
|
||||||
centerIcon: Puzzle,
|
|
||||||
items: [
|
items: [
|
||||||
{ icon: Shield },
|
{ icon: Shield },
|
||||||
{ icon: Monitor },
|
{ icon: Monitor },
|
||||||
@@ -216,10 +182,7 @@ export default function WebAgency2Page() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Growth Trends",
|
title: "Growth Trends", description: "Data-driven insights to optimize your search presence and drive traffic.", bentoComponent: "line-chart"},
|
||||||
description: "Data-driven insights to optimize your search presence and drive traffic.",
|
|
||||||
bentoComponent: "line-chart",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardFifteen
|
||||||
@@ -254,21 +217,11 @@ export default function WebAgency2Page() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
negativeCard={{
|
negativeCard={{
|
||||||
items: [
|
items: [
|
||||||
"Generic templates with no personality",
|
"Generic templates with no personality", "Slow load times and poor performance", "No SEO strategy or search visibility", "Outdated design that hurts credibility", "No ongoing support after launch"],
|
||||||
"Slow load times and poor performance",
|
|
||||||
"No SEO strategy or search visibility",
|
|
||||||
"Outdated design that hurts credibility",
|
|
||||||
"No ongoing support after launch",
|
|
||||||
],
|
|
||||||
}}
|
}}
|
||||||
positiveCard={{
|
positiveCard={{
|
||||||
items: [
|
items: [
|
||||||
"Custom designs tailored to your brand",
|
"Custom designs tailored to your brand", "Lightning-fast performance on all devices", "Built-in SEO to drive organic traffic", "Modern design that builds trust", "Dedicated support and maintenance"],
|
||||||
"Lightning-fast performance on all devices",
|
|
||||||
"Built-in SEO to drive organic traffic",
|
|
||||||
"Modern design that builds trust",
|
|
||||||
"Dedicated support and maintenance",
|
|
||||||
],
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<TeamCardFive
|
<TeamCardFive
|
||||||
@@ -298,6 +251,16 @@ export default function WebAgency2Page() {
|
|||||||
{ id: "5", title: "What technologies do you use?", content: "We build with modern technologies including Next.js, React, and Tailwind CSS to ensure fast, scalable, and maintainable websites." },
|
{ id: "5", title: "What technologies do you use?", content: "We build with modern technologies including Next.js, React, and Tailwind CSS to ensure fast, scalable, and maintainable websites." },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
<div id="reservas" data-section="reservas">
|
||||||
|
<ContactCenter
|
||||||
|
tag="Reservas"
|
||||||
|
title="Haz tu Reserva"
|
||||||
|
description="Para reservar, por favor proporciona los siguientes datos: Nombre, Teléfono, Fecha, Hora, Número de comensales y cualquier Comentario adicional."
|
||||||
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
buttonText="Enviar Solicitud"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
tag="Get in Touch"
|
tag="Get in Touch"
|
||||||
title="Ready to Transform Your Digital Presence?"
|
title="Ready to Transform Your Digital Presence?"
|
||||||
@@ -315,8 +278,7 @@ export default function WebAgency2Page() {
|
|||||||
copyrightText="© 2026 | Webild"
|
copyrightText="© 2026 | Webild"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{ label: "About", href: "#about" },
|
{ label: "About", href: "#about" },
|
||||||
{ label: "Services", href: "#services" },
|
{ label: "Services", href: "#services" },
|
||||||
{ label: "Work", href: "#work" },
|
{ label: "Work", href: "#work" },
|
||||||
@@ -324,8 +286,7 @@ export default function WebAgency2Page() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Services", items: [
|
||||||
items: [
|
|
||||||
{ label: "Web Development", href: "#" },
|
{ label: "Web Development", href: "#" },
|
||||||
{ label: "SEO", href: "#" },
|
{ label: "SEO", href: "#" },
|
||||||
{ label: "Branding", href: "#" },
|
{ label: "Branding", href: "#" },
|
||||||
@@ -333,8 +294,7 @@ export default function WebAgency2Page() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Connect",
|
title: "Connect", items: [
|
||||||
items: [
|
|
||||||
{ label: "Twitter", href: "#" },
|
{ label: "Twitter", href: "#" },
|
||||||
{ label: "LinkedIn", href: "#" },
|
{ label: "LinkedIn", href: "#" },
|
||||||
{ label: "Instagram", href: "#" },
|
{ label: "Instagram", href: "#" },
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #0a0a0a;
|
--background: #FBF8F4;
|
||||||
--card: #161616;
|
--card: #F3EFE9;
|
||||||
--foreground: #f0f0f0;
|
--foreground: #3A2E2C;
|
||||||
--primary-cta: #ffffff;
|
--primary-cta: #C95D4A;
|
||||||
--primary-cta-text: #0a0a0a;
|
--primary-cta-text: #0a0a0a;
|
||||||
--secondary-cta: #1e1e1e;
|
--secondary-cta: #7A8C5F;
|
||||||
--secondary-cta-text: #e0e0e0;
|
--secondary-cta-text: #e0e0e0;
|
||||||
--accent: #d0d0d0;
|
--accent: #A63A3A;
|
||||||
--background-accent: #9a9a9a;
|
--background-accent: #E0C0A0;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user