Skip to content

Commit

Permalink
nota 14 ok
Browse files Browse the repository at this point in the history
  • Loading branch information
alexaiconejo committed Sep 19, 2024
1 parent ebc81c5 commit c9927a2
Show file tree
Hide file tree
Showing 5 changed files with 393 additions and 445 deletions.
12 changes: 12 additions & 0 deletions public/data/investigaciones.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,18 @@
"dominio": "trans-migrante",
"tipoInvestigacion": "informe",
"region": "Caba"
},
{
"id": "i14",
"titulo": "Nadie sabe lo que un cuerpo puede",
"autorxs": "Facundo Cifelli",
"ilus": "Panchopepe",
"fecha": "19/09/2024",
"imagen": "https://static.wixstatic.com/media/0f4ca0_6ee1dcd0e38b416cbf2f2344eee5ea7f~mv2.jpg/v1/fill/w_1101,h_678,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/tucu%20x%20panchopepe%20-%20WEB%20MAPA%20(1).jpg",
"textoBajada": "Lo que ocurre entre una detención y otra no es más que tiempo que se diluye en sueños de libertad. Un hombre y una maquinaria estatal que lo arrastra y lo devuelve para exponer un cuerpo fracturado, un alma sola. De requisas y hospitales, un circuito que se muestra ineludible dentro las comisarías de la Ciudad de Buenos Aires donde la División de Unidad Táctica de Intervenciones de Alcaildías tiene una sombría preponderancia.",
"dominio": "nadie-sabe",
"tipoInvestigacion": "informe",
"region": "Caba"
}
]

12 changes: 6 additions & 6 deletions src/components/Investigaciones/Investigaciones.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import MapaBlur from "../MapaBlur";
import TodasInvestigaciones from "./todasInvest/TodasInvestigaciones";
import { useState } from "react";

const tituloNotaPrincipal = "Trans, migrante y peligrosa";
const fechaUltimoReporte = "08/05/2024";
const tituloNotaPrincipal = "Nadie sabe lo que un cuerpo puede";
const fechaUltimoReporte = "19/09/2024";
const fotoNotaPrincipal =
"https://static.wixstatic.com/media/0f4ca0_f251793ed7094671bfbee7daf0ddec04~mv2.jpg/v1/fill/w_1211,h_630,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/TRANS%20MIGRANTE%20x%20Nicol%C3%A1s%20Daniluk%20-%20WEB%20MAPA%20(1).jpg";
"https://static.wixstatic.com/media/0f4ca0_6ee1dcd0e38b416cbf2f2344eee5ea7f~mv2.jpg/v1/fill/w_1101,h_678,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/tucu%20x%20panchopepe%20-%20WEB%20MAPA%20(1).jpg";
const fechaNotaPrincipal = "29/03/2022";
const autorxsNotaPrincipal = " Elisa Corso";
const ilusNotaPrincipal = "Nicolás Daniluk";
const autorxsNotaPrincipal = "Facundo Cifelli";
const ilusNotaPrincipal = "Panchopepe";
const numeroReporte = "Cuarto";

const Investigaciones = () => {
Expand Down Expand Up @@ -54,7 +54,7 @@ const Investigaciones = () => {

<section className={styles.investigaciones}>
<section className={styles.investNovedades}>
<Link to="/investigacion/trans-migrante">
<Link to="/investigacion/nadie-sabe">
<article className={styles.notaPrincipal}>
<img
src={fotoNotaPrincipal}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import Nota10 from "../todasInvest/Nota10";
import Nota11 from "../todasInvest/Nota11";
import Nota12 from "../todasInvest/Nota12";
import Nota13 from "../todasInvest/Nota13";
import Nota14 from "../todasInvest/Nota14";

interface InvestigacionModel {
id: string;
Expand Down Expand Up @@ -45,6 +46,7 @@ const componentesNotas: ComponentesNotas = {
"sin-noticias-cuarto": Nota11,
"a-el-lo-baleo": Nota12,
"trans-migrante": Nota13,
"nadie-sabe": Nota14,
};

const Investigacion = () => {
Expand Down
Loading

0 comments on commit c9927a2

Please sign in to comment.