diff --git a/src/components/section/IdentitySection.astro b/src/components/section/IdentitySection.astro new file mode 100644 index 0000000..03c351e --- /dev/null +++ b/src/components/section/IdentitySection.astro @@ -0,0 +1,17 @@ +--- +const { title, text, initTitle, colorText, bgColor } = Astro.props; +--- + +
+ +
+
IMAGEN
+
+

{initTitle}

+

{title}

+

{text}

+ +
+
+ +
diff --git a/src/components/section/InfoSection.astro b/src/components/section/InfoSection.astro index 24c0eea..a0827ea 100644 --- a/src/components/section/InfoSection.astro +++ b/src/components/section/InfoSection.astro @@ -3,7 +3,7 @@ import { infoboxes } from "../../data/content/infosection.js"; import BoxContainer from "../BoxContainer.astro"; import { Icon } from "astro-icon/components"; -const { data } = Astro.props; +const { bgColor, titleColor, textColor, title, text } = Astro.props; ---
@@ -15,7 +15,7 @@ const { data } = Astro.props;
-

Construyendo el mundo soñado por los profetas: justicia y paz para Israel y toda la humanidad

+

{title}

El Centro del Reino de Paz y Justicia (CPyJ) es una organización de alcance internacional dedicada a la formación, el diálogo estratégico y la acción pública, orientada a promover la justicia y la paz conforme a los valores eternos proclamados por los profetas, con un compromiso explícito y permanente con Israel y su lugar central en la historia y el destino del mundo.

diff --git a/src/pages/index.astro b/src/pages/index.astro index 5211d7e..f963029 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -7,6 +7,7 @@ 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 IdentitySecion from "../components/section/identitySection.astro"; import { infoboxes } from "../data/content/infosection.js"; import ColorSection from "../components/section/ColorSection.astro"; @@ -17,12 +18,28 @@ const carouselImages2 = [ "https://picsum.photos/1920/800?random=2&grayscale", "https://picsum.photos/1920/800?random=3&grayscale", ]; + +const carouselImages3 = [ + "https://picsum.photos/1920/800?random=1&grayscale", + "https://picsum.photos/1920/800?random=2&grayscale", + "https://picsum.photos/1920/800?random=3&grayscale", +]; --- - + + + + +