Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 87e557a76a | |||
| 17a6b14a90 | |||
| 74bc9ccbc9 | |||
| 84e2602aa7 | |||
| 9de1728a08 | |||
| 8b7c8e9e85 | |||
| 8206f0f46f | |||
| 2fdf40f08d | |||
| 512e945b7c | |||
| 4c21c734f6 | |||
| b92ff15c78 |
@@ -2,10 +2,10 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
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 FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||||
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
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 HeroCentered from '@/components/sections/hero/HeroCentered';
|
||||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
@@ -47,6 +47,7 @@ export default function LandingPage() {
|
|||||||
name: "Contacto", id: "#contacto"},
|
name: "Contacto", id: "#contacto"},
|
||||||
]}
|
]}
|
||||||
brandName="Fuerza Viva"
|
brandName="Fuerza Viva"
|
||||||
|
button={{ text: "Únete Ahora", href: "#contacto" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -305,25 +306,35 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contacto" data-section="contacto">
|
<div id="contacto" data-section="contacto">
|
||||||
<ContactSplit
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
|
||||||
variant: "radial-gradient"}}
|
|
||||||
tag="Contáctanos"
|
|
||||||
title="Empieza Tu Viaje Fitness"
|
title="Empieza Tu Viaje Fitness"
|
||||||
description="Déjanos tus datos y te ayudaremos a encontrar el plan perfecto para ti."
|
description="Déjanos tus datos y te ayudaremos a encontrar el plan perfecto para ti."
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/people-pilates-reformer-class-exercising-their-bodies_23-2150858031.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/people-pilates-reformer-class-exercising-their-bodies_23-2150858031.jpg"
|
||||||
imageAlt="Personas ejercitándose en un gimnasio"
|
imageAlt="Personas ejercitándose en un gimnasio"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Tu email"
|
|
||||||
buttonText="Enviar Consulta"
|
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
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
multiSelect={{
|
||||||
|
name: "areasOfInterest", label: "Áreas de Interés", options: ["Clases Grupales", "Entrenamiento Personalizado", "Pérdida de Peso", "Ganancia Muscular", "Nutrición", "Rehabilitación", "CrossFit"]
|
||||||
|
}}
|
||||||
|
textarea={{
|
||||||
|
name: "message", placeholder: "Tu mensaje", rows: 4,
|
||||||
|
required: false
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseCard
|
<FooterBaseReveal
|
||||||
logoText="Fuerza Viva"
|
logoText="Fuerza Viva"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-mulish), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-mulish), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f7f6f7;
|
--background: #ffffff;
|
||||||
--card: #ffffff;
|
--card: #f9f9f9;
|
||||||
--foreground: #25190c;
|
--foreground: #120a00e6;
|
||||||
--primary-cta: #ff6207;
|
--primary-cta: #FF7B05;
|
||||||
--primary-cta-text: #f7f6f7;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #f9f9f9;
|
||||||
--secondary-cta-text: #25190c;
|
--secondary-cta-text: #120a00e6;
|
||||||
--accent: #ffce93;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #e8cfa8;
|
--background-accent: #FF7B05;
|
||||||
|
|
||||||
/* 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