Update src/app/page.tsx
This commit is contained in:
237
src/app/page.tsx
237
src/app/page.tsx
@@ -33,21 +33,13 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Actividades",
|
||||
id: "features",
|
||||
},
|
||||
name: "Actividades", id: "features"},
|
||||
{
|
||||
name: "Precios",
|
||||
id: "pricing",
|
||||
},
|
||||
name: "Precios", id: "pricing"},
|
||||
{
|
||||
name: "Contacto",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contacto", id: "contact"},
|
||||
]}
|
||||
brandName="DK Team"
|
||||
/>
|
||||
@@ -56,81 +48,52 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="Escuela Deportiva DK Team"
|
||||
description="Especialistas en deportes de contacto: Boxeo, Kick Boxing, K1, MMA y BJJ. Un ambiente familiar y libertad de horarios para alcanzar tus objetivos."
|
||||
kpis={[
|
||||
{
|
||||
value: "10+",
|
||||
label: "Años de experiencia",
|
||||
},
|
||||
value: "10+", label: "Años de experiencia"},
|
||||
{
|
||||
value: "5+",
|
||||
label: "Disciplinas impartidas",
|
||||
},
|
||||
value: "5+", label: "Disciplinas impartidas"},
|
||||
{
|
||||
value: "100%",
|
||||
label: "Ambiente familiar",
|
||||
},
|
||||
value: "100%", label: "Ambiente familiar"},
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Ver horarios",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Ver horarios", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rear-view-professional-female-boxer-with-two-braids-standing-empty-gym-with-boxing-ring-background-training-alone_343059-437.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/rear-view-professional-female-boxer-with-two-braids-standing-empty-gym-with-boxing-ring-background-training-alone_343059-437.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/there-are-prizes-sunny-boxing-ring-cups-tshirt-also-equipment-like-red-gloves-helmet_613910-13048.jpg",
|
||||
alt: "Instructor 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/there-are-prizes-sunny-boxing-ring-cups-tshirt-also-equipment-like-red-gloves-helmet_613910-13048.jpg", alt: "Instructor 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/boxers-train-ring-gym_1328-5254.jpg",
|
||||
alt: "Instructor 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/boxers-train-ring-gym_1328-5254.jpg", alt: "Instructor 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/sporty-girls-training-fighting-boxing-ring-two-caucasian-girls-sportswear-protective-gloves-training-with-each-other-gym-working-out-punches-womens-boxing-healthy-lifestyle-concept_74855-23774.jpg",
|
||||
alt: "Instructor 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/sporty-girls-training-fighting-boxing-ring-two-caucasian-girls-sportswear-protective-gloves-training-with-each-other-gym-working-out-punches-womens-boxing-healthy-lifestyle-concept_74855-23774.jpg", alt: "Instructor 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/boxers-practicing-boxing-fitness-studio_107420-65141.jpg",
|
||||
alt: "Instructor 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/boxers-practicing-boxing-fitness-studio_107420-65141.jpg", alt: "Instructor 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-boxing-trainer-his-new-student-have-training-boxing-ring_613910-5980.jpg",
|
||||
alt: "Instructor 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-boxing-trainer-his-new-student-have-training-boxing-ring_613910-5980.jpg", alt: "Instructor 5"},
|
||||
]}
|
||||
avatarText="Nuestro equipo técnico profesional"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Boxeo",
|
||||
icon: Shield,
|
||||
type: "text-icon", text: "Boxeo", icon: Shield,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Kick Boxing",
|
||||
icon: Zap,
|
||||
type: "text-icon", text: "Kick Boxing", icon: Zap,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "K1",
|
||||
icon: Award,
|
||||
type: "text-icon", text: "K1", icon: Award,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "MMA",
|
||||
icon: Trophy,
|
||||
type: "text-icon", text: "MMA", icon: Trophy,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "BJJ",
|
||||
icon: Target,
|
||||
type: "text-icon", text: "BJJ", icon: Target,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -142,9 +105,7 @@ export default function LandingPage() {
|
||||
title="Sobre nuestra escuela"
|
||||
buttons={[
|
||||
{
|
||||
text: "Conoce más",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Conoce más", href: "#contact"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -156,76 +117,52 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Boxeo y Kick Boxing",
|
||||
description: "Mejora tu técnica, agilidad y fuerza con nuestras clases especializadas en striking.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-boxing-beginner-gym-lady-black-sportwear-woman-with-coach_1157-44420.jpg",
|
||||
},
|
||||
title: "Boxeo y Kick Boxing", description: "Mejora tu técnica, agilidad y fuerza con nuestras clases especializadas en striking.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-boxing-beginner-gym-lady-black-sportwear-woman-with-coach_1157-44420.jpg"},
|
||||
items: [
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Técnica avanzada",
|
||||
},
|
||||
text: "Técnica avanzada"},
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Preparación física",
|
||||
},
|
||||
text: "Preparación física"},
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Sparring controlado",
|
||||
},
|
||||
text: "Sparring controlado"},
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rear-view-professional-female-boxer-with-two-braids-standing-empty-gym-with-boxing-ring-background-training-alone_343059-437.jpg?_wi=2",
|
||||
imageAlt: "boxer training heavy bag",
|
||||
},
|
||||
{
|
||||
title: "Cardio Fight",
|
||||
description: "Entrenamiento sin contacto donde aprendes técnicas de combate quemando calorías.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fitness-woman-doing-exercise-home_23-2148207431.jpg",
|
||||
},
|
||||
title: "Cardio Fight", description: "Entrenamiento sin contacto donde aprendes técnicas de combate quemando calorías.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fitness-woman-doing-exercise-home_23-2148207431.jpg"},
|
||||
items: [
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Alta intensidad",
|
||||
},
|
||||
text: "Alta intensidad"},
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Sin contacto",
|
||||
},
|
||||
text: "Sin contacto"},
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Quema de grasa",
|
||||
},
|
||||
text: "Quema de grasa"},
|
||||
],
|
||||
reverse: true,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-boxer-training-gym_1303-18899.jpg",
|
||||
imageAlt: "boxer training heavy bag",
|
||||
},
|
||||
{
|
||||
title: "BJJ (Brasilian Jiu-Jitsu)",
|
||||
description: "Aprende el arte del combate en suelo y sumisiones en un ambiente seguro y técnico.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-white-portrait-athlete-competing-paralympics-championship-games_23-2151492740.jpg",
|
||||
},
|
||||
title: "BJJ (Brasilian Jiu-Jitsu)", description: "Aprende el arte del combate en suelo y sumisiones en un ambiente seguro y técnico.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-white-portrait-athlete-competing-paralympics-championship-games_23-2151492740.jpg"},
|
||||
items: [
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Combate en suelo",
|
||||
},
|
||||
text: "Combate en suelo"},
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Defensa personal",
|
||||
},
|
||||
text: "Defensa personal"},
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Técnicas de sumisión",
|
||||
},
|
||||
text: "Técnicas de sumisión"},
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-boxing-gloves_23-2147601742.jpg?_wi=1",
|
||||
imageAlt: "boxer training heavy bag",
|
||||
},
|
||||
]}
|
||||
title="Nuestras Actividades"
|
||||
@@ -241,41 +178,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Guantes Boxeo Pro",
|
||||
price: "59€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-boxing-gloves_23-2147601742.jpg?_wi=2",
|
||||
},
|
||||
id: "p1", name: "Guantes Boxeo Pro", price: "59€", imageSrc: "http://img.b2bpic.net/free-photo/close-up-boxing-gloves_23-2147601742.jpg"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Espinilleras Kickboxing",
|
||||
price: "45€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-red-dumbbells-black-sneakers-sport-equipment-white-background-sport-wear-sport-accessories-top-view_1428-595.jpg",
|
||||
},
|
||||
id: "p2", name: "Espinilleras Kickboxing", price: "45€", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-red-dumbbells-black-sneakers-sport-equipment-white-background-sport-wear-sport-accessories-top-view_1428-595.jpg"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Vendas de Boxeo",
|
||||
price: "10€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adult-woman-doing-strength-exercises-gym_1153-4615.jpg",
|
||||
},
|
||||
id: "p3", name: "Vendas de Boxeo", price: "10€", imageSrc: "http://img.b2bpic.net/free-photo/young-adult-woman-doing-strength-exercises-gym_1153-4615.jpg"},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Casco Entrenamiento",
|
||||
price: "65€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pair-gloves-boxing-sport_23-2150367654.jpg",
|
||||
},
|
||||
id: "p4", name: "Casco Entrenamiento", price: "65€", imageSrc: "http://img.b2bpic.net/free-photo/pair-gloves-boxing-sport_23-2150367654.jpg"},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Saco Entrenamiento",
|
||||
price: "120€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-fishing-float-fishing-lure-wooden-desk_23-2148189228.jpg",
|
||||
},
|
||||
id: "p5", name: "Saco Entrenamiento", price: "120€", imageSrc: "http://img.b2bpic.net/free-photo/close-up-fishing-float-fishing-lure-wooden-desk_23-2148189228.jpg"},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Uniforme BJJ",
|
||||
price: "85€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-teen-practicing-taekwondo_23-2150260442.jpg",
|
||||
},
|
||||
id: "p6", name: "Uniforme BJJ", price: "85€", imageSrc: "http://img.b2bpic.net/free-photo/front-view-teen-practicing-taekwondo_23-2150260442.jpg"},
|
||||
]}
|
||||
title="Tienda de Material"
|
||||
description="Equipamiento profesional de alta calidad. Si lo tenemos en stock, consíguelo sin gastos de envío."
|
||||
@@ -289,34 +202,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "plan1",
|
||||
badge: "Infantil",
|
||||
price: "40€",
|
||||
subtitle: "Boxeo, Kick Boxing y K1 (hasta 14 años)",
|
||||
features: [
|
||||
"Horario flexible",
|
||||
"Entrenamiento dirigido",
|
||||
],
|
||||
id: "plan1", badge: "Infantil", price: "40€", subtitle: "Boxeo, Kick Boxing y K1 (hasta 14 años)", features: [
|
||||
"Horario flexible", "Entrenamiento dirigido"],
|
||||
},
|
||||
{
|
||||
id: "plan2",
|
||||
badge: "Adulto",
|
||||
price: "55€",
|
||||
subtitle: "Tarifa plana todas las actividades",
|
||||
features: [
|
||||
"Acceso total",
|
||||
"Sin compromiso de permanencia",
|
||||
],
|
||||
id: "plan2", badge: "Adulto", price: "55€", subtitle: "Tarifa plana todas las actividades", features: [
|
||||
"Acceso total", "Sin compromiso de permanencia"],
|
||||
},
|
||||
{
|
||||
id: "plan3",
|
||||
badge: "Cardio",
|
||||
price: "35€",
|
||||
subtitle: "Clases de Cardio Fight",
|
||||
features: [
|
||||
"Quema calorías",
|
||||
"Entrenamiento divertido",
|
||||
],
|
||||
id: "plan3", badge: "Cardio", price: "35€", subtitle: "Clases de Cardio Fight", features: [
|
||||
"Quema calorías", "Entrenamiento divertido"],
|
||||
},
|
||||
]}
|
||||
title="Nuestros Precios"
|
||||
@@ -332,25 +227,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "10+",
|
||||
title: "Años",
|
||||
description: "Formando atletas",
|
||||
icon: Award,
|
||||
id: "m1", value: "10+", title: "Años", description: "Formando atletas", icon: Award,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "500+",
|
||||
title: "Alumnos",
|
||||
description: "Han entrenado aquí",
|
||||
icon: Users,
|
||||
id: "m2", value: "500+", title: "Alumnos", description: "Han entrenado aquí", icon: Users,
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "24/7",
|
||||
title: "Flexibilidad",
|
||||
description: "Libertad de horarios",
|
||||
icon: Clock,
|
||||
id: "m3", value: "24/7", title: "Flexibilidad", description: "Libertad de horarios", icon: Clock,
|
||||
},
|
||||
]}
|
||||
title="DK Team en cifras"
|
||||
@@ -363,20 +246,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "¿Necesito experiencia previa?",
|
||||
content: "No, tenemos grupos de iniciación donde aprendes desde cero.",
|
||||
},
|
||||
id: "f1", title: "¿Necesito experiencia previa?", content: "No, tenemos grupos de iniciación donde aprendes desde cero."},
|
||||
{
|
||||
id: "f2",
|
||||
title: "¿Tienen horario de mañana y tarde?",
|
||||
content: "Sí, nos caracterizamos por nuestra amplia flexibilidad horaria.",
|
||||
},
|
||||
id: "f2", title: "¿Tienen horario de mañana y tarde?", content: "Sí, nos caracterizamos por nuestra amplia flexibilidad horaria."},
|
||||
{
|
||||
id: "f3",
|
||||
title: "¿Hay clases para niños?",
|
||||
content: "Sí, tenemos clases específicas de Boxeo y Kick Boxing hasta 14 años.",
|
||||
},
|
||||
id: "f3", title: "¿Hay clases para niños?", content: "Sí, tenemos clases específicas de Boxeo y Kick Boxing hasta 14 años."},
|
||||
]}
|
||||
sideTitle="Preguntas Frecuentes"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -387,8 +261,7 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Contacto"
|
||||
title="Estamos en Alcorcón"
|
||||
description="Calle Minas 20 (Polígono Urtinsa) - Alcorcón (Madrid). ¡Ven a visitarnos!"
|
||||
|
||||
Reference in New Issue
Block a user