Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -2,10 +2,10 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
@@ -177,15 +177,15 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "p1", name: "Programa de Fuerza Total", price: "$60/mes", imageSrc: "http://img.b2bpic.net/free-photo/athlete-gym-swings-triceps-with-barbell-sports-lifestyle_169016-61178.jpg", imageAlt: "Hombre levantando pesas"},
|
||||
{
|
||||
id: "p2", name: "Reto de Cardio Extremo", price: "$55/mes", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-taking-selfies-gym_23-2148419819.jpg", imageAlt: "Mujer corriendo en cinta"},
|
||||
id: "p2", name: "Reto de Cardio Extremo", price: "$55/mes", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-taking-selfies-gym_23-2148419819.jpg", alt: "Mujer corriendo en cinta"},
|
||||
{
|
||||
id: "p3", name: "Bienestar en Yoga y Meditación", price: "$45/mes", imageSrc: "http://img.b2bpic.net/free-photo/trainer-assisting-group-people-with-stretching-exercise_1170-236.jpg", imageAlt: "Grupo de personas haciendo yoga"},
|
||||
id: "p3", name: "Bienestar en Yoga y Meditación", price: "$45/mes", imageSrc: "http://img.b2bpic.net/free-photo/trainer-assisting-group-people-with-stretching-exercise_1170-236.jpg", alt: "Grupo de personas haciendo yoga"},
|
||||
{
|
||||
id: "p4", name: "Guía de Nutrición Personal", price: "$70/mes", imageSrc: "http://img.b2bpic.net/free-photo/training-concept-with-slate_23-2147692056.jpg", imageAlt: "Comida saludable en una mesa"},
|
||||
id: "p4", name: "Guía de Nutrición Personal", price: "$70/mes", imageSrc: "http://img.b2bpic.net/free-photo/training-concept-with-slate_23-2147692056.jpg", alt: "Comida saludable en una mesa"},
|
||||
{
|
||||
id: "p5", name: "CrossFit Challenge", price: "$65/mes", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-white-rope-gym_651396-760.jpg", imageAlt: "Persona haciendo entrenamiento CrossFit"},
|
||||
id: "p5", name: "CrossFit Challenge", price: "$65/mes", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-white-rope-gym_651396-760.jpg", alt: "Persona haciendo entrenamiento CrossFit"},
|
||||
{
|
||||
id: "p6", name: "Pilates Reformer", price: "$50/mes", imageSrc: "http://img.b2bpic.net/free-photo/friends-training-gym_23-2150772251.jpg", imageAlt: "Mujer haciendo pilates en máquina"},
|
||||
id: "p6", name: "Pilates Reformer", price: "$50/mes", imageSrc: "http://img.b2bpic.net/free-photo/friends-training-gym_23-2150772251.jpg", alt: "Mujer haciendo pilates en máquina"},
|
||||
]}
|
||||
title="Alcanza Tus Metas Más Rápido"
|
||||
description="Desde entrenamiento de fuerza hasta clases de yoga, tenemos el programa ideal para ti."
|
||||
@@ -305,10 +305,8 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contacto" data-section="contacto">
|
||||
<ContactSplit
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient"}}
|
||||
tag="Contáctanos"
|
||||
title="Empieza Tu Viaje Fitness"
|
||||
description="Déjanos tus datos y te ayudaremos a encontrar el plan perfecto para ti."
|
||||
@@ -316,14 +314,24 @@ export default function LandingPage() {
|
||||
imageAlt="Personas ejercitándose en un gimnasio"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Tu email"
|
||||
buttonText="Enviar Consulta"
|
||||
termsText="Al enviar, confirmas que estás de acuerdo con nuestros Términos y Condiciones."
|
||||
inputs={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Tu nombre", required: true
|
||||
},
|
||||
{
|
||||
name: "email", type: "email", placeholder: "Tu email", required: true
|
||||
}
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Tu mensaje", rows: 4,
|
||||
required: false
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
<FooterBaseReveal
|
||||
logoText="Fuerza Viva"
|
||||
columns={[
|
||||
{
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f7f6f7;
|
||||
--card: #ffffff;
|
||||
--foreground: #25190c;
|
||||
--primary-cta: #ff6207;
|
||||
--primary-cta-text: #f7f6f7;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #25190c;
|
||||
--accent: #ffce93;
|
||||
--background-accent: #e8cfa8;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #120a00e6;
|
||||
--primary-cta: #FF7B05;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #120a00e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #FF7B05;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user