--- import "../../styles/global.css"; import MainLayout from "../../layouts/MainLayout.astro"; import HeroHome from "../../components/HeroHome.astro"; import NewsSection from "../../components/section/NewsSection.astro"; import ParticipateSection from "../../components/section/ParticipateSection.astro"; import CarouselSection from "../../components/section/CarouselSection.astro"; import InfoSection from "../../components/section/InfoSection.astro"; import IdentitySection from "../../components/section/IdentitySection.astro"; import AuthoritySection from "../../components/section/AuthoritySection.astro"; import ProjectionSection from "../../components/section/ProjectionSection.astro"; import { infoboxes } from "../../data/content/infosection.js"; import ColorSection from "../../components/section/ColorSection.astro"; import TitleSection from "../../components/section/TitleSection.astro"; import GridSection from "../../components/section/GridSection.astro"; import ColumnsSection from "../../components/section/ColumnsSection.astro"; import FormationSection from "../../components/section/FormationSection.astro"; import FooterSection from "../../components/section/FooterSection.astro"; const { locale } = Astro.params; import { createTranslator } from '../../i18n'; const tl = createTranslator(Astro.currentLocale); const carouselImages2 = [ { image: "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp", text: "Justicia", }, { image: "https://ik.imagekit.io/crpy/amigos-bn.webp", text: "Paz", }, ]; const carouselImages3 = [ { image: "https://ik.imagekit.io/crpy/tr:w-1920,h-1080,cm-extract,x-0,y-1730/lonely-african-american-male-praying-with-his-hands-bible-with-his-head-down.webp", text: "Justicia", }, { image: "https://ik.imagekit.io/crpy/amigos-bn.webp", text: "Paz", }, ]; ---