diff --git a/components/TextWithIconAndButton.vue b/components/TextWithIconAndButtons.vue similarity index 76% rename from components/TextWithIconAndButton.vue rename to components/TextWithIconAndButtons.vue index 14d987a..6b8add0 100644 --- a/components/TextWithIconAndButton.vue +++ b/components/TextWithIconAndButtons.vue @@ -21,11 +21,18 @@

{{ title }}

- - - {{ button.label }} - - +
+ + + {{ button.label }} + + + + + {{ button2.label }} + + +
@@ -68,6 +75,10 @@ export default { link: "", color: "button", }), + }, + button2: { + type: Object, + default: null, } }, diff --git a/data/es/consumo-cuidado.json b/data/es/consumo-cuidado.json index 25df53e..1bb3017 100644 --- a/data/es/consumo-cuidado.json +++ b/data/es/consumo-cuidado.json @@ -98,7 +98,7 @@ } }, { - "component": "TextWithIconAndButton", + "component": "TextWithIconAndButtons", "props": { "id": "consumo-cuidado-cta", "title": "Conecta con quienes producen con cuidado.", diff --git a/data/es/iguales.json b/data/es/iguales.json index 1465e1a..0df2b3d 100644 --- a/data/es/iguales.json +++ b/data/es/iguales.json @@ -111,7 +111,7 @@ } }, { - "component": "TextWithIconAndButton", + "component": "TextWithIconAndButtons", "props": { "id": "iguales-cta", "title": "Evalúa tu compromiso con la igualdad.", diff --git a/data/es/ods.json b/data/es/ods.json new file mode 100644 index 0000000..abe1dc0 --- /dev/null +++ b/data/es/ods.json @@ -0,0 +1,89 @@ +[ + { + "component": "HeroPages", + "props": { + "id": "hero-pages-ods", + "title": "ODS", + "subtitle": "Índice de Compromiso Social con la Agenda 2030
Una herramienta para medir, visibilizar y acelerar los ODS desde la economía social.", + "bgColor": "ods", + "bgImage": { + "src": "hero-ods-formas.png", + "alt": "ods Imagenes Fondo" + }, + "button": { + "label": "comenzar autodianóstico", + "link": "", + "color": "button" + } + } + }, + { + "component": "TextWithImage", + "id": "que-es-ods", + "props": { + "title": "ODS desde la economía social: evaluación y transparencia", + "paragraphs": [ + "El Índice de Compromiso Social con los ODS es una herramienta de autoevaluación y transparencia que permite a las entidades de la economía social valorar, registrar y compartir su avance hacia la Agenda 2030 de forma abierta, geolocalizada y adaptada a su realidad.", + "Esta herramienta está basada en la plataforma OpenODS Index y ha sido adaptada específicamente para nuestro sector, con una metodología validada por el PNUD y ajustada por COCETA a las características de las cooperativas de trabajo asociado.", + "Ahora, desde kit-ECO.SICIAL, trabajamos para ponerla al servicio de todas las entidades de la economía social." + ], + "position": "right", + "bgColor": "light", + "image": { + "src": "bodegon-objetos-sostenibles.png", + "alt": "Bodegón de objetos sostenibles", + "display": "normal" + } + } + }, + { + "component": "TextWithImage", + "id": "para-que-sirve-ods", + "props": { + "title": "¿Para qué sirve?", + "paragraphs": [ + "Esta herramienta te permite mostrar de forma clara y accesible lo que tu entidad ya está haciendo por un desarrollo más justo y sostenible.
Con una metodología común, puedes generar datos públicos, actualizables y con enfoque territorial.", + "Con esta herramienta puedes:" + ], + "list": [ + "Autoevaluar tu compromiso con los Objetivos de Desarrollo Sostenible.", + "Registrar y organizar tus acciones, planes y programas vinculados a los ODS.", + "Publicar un perfil abierto que muestra tu compromiso y evolución.", + "Geolocalizar tus iniciativas y situarlas en un mapa colectivo.", + "Incorporar información flexible, desde acciones puntuales hasta planes plurianuales.", + "Aplicar una metodología compartida, validada por el PNUD y adaptada por COCETA.", + "Contribuir a una red sectorial de conocimiento y transparencia." + ], + "position": "left", + "bgColor": "light", + "image": { + "src": "empresarios-trabajando-en-grafico.png", + "alt": "Empresarios trabajando en gráfico", + "display": "normal" + } + } + }, + { + "component": "TextWithIconAndButtons", + "props": { + "id": "ods-cta", + "title": "¿Quieres empezar o saber más?", + "subtitle": "Explora la herramienta o accede al aula virtual para formarte y poner en marcha el Índice en tu entidad.
Desde kit-ECO.SOCIAL te acompañamos en cada paso.", + "bgColor": "ods", + "bgImage": { + "src": "hero-ods-formas.png", + "alt": "ods Imagenes Fondo" + }, + "button": { + "label": "Explorar la herramienta", + "link": "", + "color": "button" + }, + "button2": { + "label": "Acceder al aula virtual", + "link": "", + "color": "button" + } + } + } +] \ No newline at end of file diff --git a/pages/[langcode]/consumo-cuidado.vue b/pages/[langcode]/consumo-cuidado.vue index ab13ea6..5c7b43d 100644 --- a/pages/[langcode]/consumo-cuidado.vue +++ b/pages/[langcode]/consumo-cuidado.vue @@ -13,13 +13,13 @@ import HeroPages from '~/components/HeroPages.vue'; import TextWithImage from '../../components/TextWithImage.vue'; import SectionWithCards from '../../components/SectionWithCards.vue'; -import TextWithIconAndButton from '../../components/TextWithIconAndButton.vue'; +import TextWithIconAndButtons from '../../components/TextWithIconAndButtons.vue'; export default { components: { HeroPages, TextWithImage, - TextWithIconAndButton, + TextWithIconAndButtons, SectionWithCards }, data() { diff --git a/pages/[langcode]/iguales.vue b/pages/[langcode]/iguales.vue index a1efe5f..c60b608 100644 --- a/pages/[langcode]/iguales.vue +++ b/pages/[langcode]/iguales.vue @@ -13,14 +13,14 @@ import HeroPages from '~/components/HeroPages.vue'; import TextWithImage from '../../components/TextWithImage.vue'; import SectionWithCards from '../../components/SectionWithCards.vue'; -import TextWithIconAndButton from '../../components/TextWithIconAndButton.vue'; +import TextWithIconAndButtons from '../../components/TextWithIconAndButtons.vue'; import Quote from '../../components/Quote.vue'; export default { components: { HeroPages, TextWithImage, - TextWithIconAndButton, + TextWithIconAndButtons, SectionWithCards, Quote }, diff --git a/pages/[langcode]/ods.vue b/pages/[langcode]/ods.vue index f7098de..4b5cec7 100644 --- a/pages/[langcode]/ods.vue +++ b/pages/[langcode]/ods.vue @@ -1,16 +1,48 @@ - - \ No newline at end of file +} + \ No newline at end of file diff --git a/public/img/bodegon-objetos-sostenibles.png b/public/img/bodegon-objetos-sostenibles.png new file mode 100644 index 0000000..d419924 Binary files /dev/null and b/public/img/bodegon-objetos-sostenibles.png differ diff --git a/public/img/empresarios-trabajando-en-grafico.png b/public/img/empresarios-trabajando-en-grafico.png new file mode 100644 index 0000000..077d6fd Binary files /dev/null and b/public/img/empresarios-trabajando-en-grafico.png differ diff --git a/public/img/hero-ods-formas.png b/public/img/hero-ods-formas.png new file mode 100644 index 0000000..769bdcc Binary files /dev/null and b/public/img/hero-ods-formas.png differ