diff --git a/src/app/page.tsx b/src/app/page.tsx index 5387916..e052109 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { useState } from "react"; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; @@ -12,6 +13,25 @@ import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; export default function LandingPage() { + const [lang, setLang] = useState("es"); + + const toggleLanguage = () => { + setLang(lang === "es" ? "en" : "es"); + }; + + const t = { + es: { + nav: [{ name: "Inicio", id: "hero" }, { name: "Nosotros", id: "about" }, { name: "Contacto", id: "contact" }], + heroTitle: "Bienvenidos a la Iglesia", heroDesc: "Un lugar de fe, comunidad y pertenencia. Únete a nosotros mientras crecemos juntos en espíritu y propósito.", aboutTitle: "Nuestro Corazón y Misión", aboutDesc: "En nuestra iglesia, nos esforzamos por crear un espacio donde todos se sientan bienvenidos y apoyados. Ya sea que seas nuevo en la fe o estés buscando un hogar, estamos aquí para ti.", featuresTitle: "Nuestros Ministerios", featuresDesc: "Oportunidades para servir, aprender y crecer juntos.", testimonialsTitle: "Voces de la Comunidad", testimonialsDesc: "Lo que nuestros miembros tienen que decir sobre su experiencia aquí.", faqTitle: "Preguntas Frecuentes", contactTitle: "Visítanos hoy", contactDesc: "Ubicación: 123 Faith Avenue, Ciudad | ¡Esperamos conocerte pronto!", lang: "Cambiar a Inglés" + }, + en: { + nav: [{ name: "Home", id: "hero" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" }], + heroTitle: "Welcome to Our Church", heroDesc: "A place of faith, community, and belonging. Join us as we grow together in spirit and purpose.", aboutTitle: "Our Heart and Mission", aboutDesc: "At our church, we strive to create a space where everyone feels welcome and supported. Whether you are new to faith or looking for a home, we are here for you.", featuresTitle: "Our Ministries", featuresDesc: "Opportunities to serve, learn, and grow together.", testimonialsTitle: "Community Voices", testimonialsDesc: "What our members have to say about their experience here.", faqTitle: "Frequently Asked Questions", contactTitle: "Visit Us Today", contactDesc: "Location: 123 Faith Avenue, City | We look forward to meeting you!", lang: "Switch to Spanish" + } + }; + + const content = t[lang as keyof typeof t]; + return (
@@ -60,12 +72,12 @@ export default function LandingPage() { @@ -91,20 +103,14 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split" useInvertedBackground={false} - testimonials={[ - { id: "1", name: "John Doe", role: "Miembro", company: "Iglesia Comunitaria", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-senior-woman-portrait-posing-couch_23-2148891724.jpg" }, - { id: "2", name: "Jane Smith", role: "Voluntaria", company: "Iglesia Comunitaria", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-employee-with-stubble-stylish-haircut-standing-blank-wall_273609-12358.jpg" }, - { id: "3", name: "Michael Brown", role: "Miembro", company: "Iglesia Comunitaria", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-people-praying-outdoors_23-2150870090.jpg" }, - { id: "4", name: "Sarah Wilson", role: "Maestra", company: "Iglesia Comunitaria", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/people-meeting-community-center_23-2149155356.jpg" }, - { id: "5", name: "Robert Miller", role: "Miembro", company: "Iglesia Comunitaria", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/elder-group-friends-partying_23-2150285559.jpg" } - ]} + testimonials={[]} kpiItems={[ - { value: "100+", label: "Miembros de la comunidad" }, - { value: "20+", label: "Ministerios" }, - { value: "5+", label: "Años activos" } + { value: "100+", label: lang === "es" ? "Miembros" : "Members" }, + { value: "20+", label: lang === "es" ? "Ministerios" : "Ministries" }, + { value: "Active", label: lang === "es" ? "Activa" : "Active" } ]} - title="Voces de la Comunidad" - description="Lo que nuestros miembros tienen que decir sobre su experiencia aquí." + title={content.testimonialsTitle} + description={content.testimonialsDesc} /> @@ -112,10 +118,10 @@ export default function LandingPage() { @@ -124,23 +130,22 @@ export default function LandingPage() {
); -} +} \ No newline at end of file