diff --git a/public/shared/der.png b/public/shared/der.png index c3be071..65a825f 100644 Binary files a/public/shared/der.png and b/public/shared/der.png differ diff --git a/public/shared/dern.png b/public/shared/dern.png index 10d81ed..9584fbc 100644 Binary files a/public/shared/dern.png and b/public/shared/dern.png differ diff --git a/public/shared/logoDerPastel.png b/public/shared/logoDerPastel.png new file mode 100644 index 0000000..1628085 Binary files /dev/null and b/public/shared/logoDerPastel.png differ diff --git a/src/app/amparo/page.tsx b/src/app/amparo/page.tsx index 69f0e72..10d61ae 100644 --- a/src/app/amparo/page.tsx +++ b/src/app/amparo/page.tsx @@ -2,7 +2,7 @@ import React from 'react' import Image from 'next/image' import { cartoons } from '../../../public/amparo' import amparoIcon from '../../../public/shared/amparo.png' -import SiteMapFooter from '../components/SiteMapFooter' +// import SiteMapFooter from '../components/SiteMapFooter' import { Metadata } from 'next' export const metadata: Metadata = { @@ -143,7 +143,7 @@ const Amparo = () => {
- + {/* */}
) diff --git a/src/app/casos/[id]/page.tsx b/src/app/casos/[id]/page.tsx index 73fb4a9..45863b9 100644 --- a/src/app/casos/[id]/page.tsx +++ b/src/app/casos/[id]/page.tsx @@ -38,18 +38,18 @@ const ID = ({ params }: { params: { id: string } }) => { ¿SABÍAS QUE EN ARGENTINA
HAY UNA MANERA SEGURA DE REPORTAR VULNERABILIDADES INFORMÁTICAS?
- - ¿CÓMO REPORTAR? + +

¿QUÉ Y CÓMO REPORTAR?

- - CASOS + +

CASOS

-

LLEGÓ TARDE PARA ELLOS

-

+

LLEGÓ TARDE PARA ELLOS

+

TE CONTAMOS QUIÉNES SON Y CUÁL ES SU HISTORIA

diff --git a/src/app/casos/components/CaseSelector.tsx b/src/app/casos/components/CaseSelector.tsx index dc0d96d..23c8def 100644 --- a/src/app/casos/components/CaseSelector.tsx +++ b/src/app/casos/components/CaseSelector.tsx @@ -14,18 +14,18 @@ const CaseSelector = ({ id, cases }: { id?: string, cases: any }) => { // }, [id]) return ( -
+
{ cases.map((c: any) => { return ( -
-

{c.name}

+
+

{c.name}

{c.name}
diff --git a/src/app/casos/components/HowToReport.tsx b/src/app/casos/components/HowToReport.tsx index 0172e5e..39de8d0 100644 --- a/src/app/casos/components/HowToReport.tsx +++ b/src/app/casos/components/HowToReport.tsx @@ -3,16 +3,16 @@ import { otherLogos } from '~/reporta/' const HowToReport = () => { return ( -
-

ENTONCES,
+
+

ENTONCES,
¿QUÉ Y CÓMO PUEDO REPORTAR?

-

+

La Fundación Via Libre recibe informes sobre fallos en aplicaciones que puedan afectar los derechos de las personas, especialmente la seguridad de sus datos personales. Si encuentras vulnerabilidades, como la posibilidad de extracción o modificación no autorizada de datos, o identificas versiones obsoletas o inseguras de software, este es el lugar para informarlo.

-
+
Reportá logo { height={135} className='my-8' /> -

+

Todos los esfuerzos técnicos son importantes para conservar datos personales a través de los reportes realizados

- ¿CÓMO REPORTAR? + ¿QUÉ Y CÓMO REPORTAR?
diff --git a/src/app/casos/page.tsx b/src/app/casos/page.tsx index d8fdea4..99a8328 100644 --- a/src/app/casos/page.tsx +++ b/src/app/casos/page.tsx @@ -17,18 +17,18 @@ const Casos = () => { ¿SABÍAS QUE EN ARGENTINA
HAY UNA MANERA SEGURA DE REPORTAR VULNERABILIDADES INFORMÁTICAS?

-

LLEGÓ TARDE PARA ELLOS

-

+

LLEGÓ TARDE PARA ELLOS

+

TE CONTAMOS QUIÉNES SON Y CUÁL ES SU HISTORIA

diff --git a/src/app/components/CollapseNavBar.tsx b/src/app/components/CollapseNavBar.tsx new file mode 100644 index 0000000..3f4aae3 --- /dev/null +++ b/src/app/components/CollapseNavBar.tsx @@ -0,0 +1,45 @@ +'use client' + +import { useState } from "react" +import NavLinks from "./NavLinks" +import der from "~/shared/logoDerPastel.png" +import Image from "next/image" +import Link from "next/link" + +const CollapseNavBar = () => { + const [showMenu, setShowMenu] = useState(false) + let burgerMenuClass = 'hidden' + const navElemsSize = "w-8 h-8" + + if (!showMenu) burgerMenuClass = 'hidden opacity-0' + else burgerMenuClass = 'flex flex-col items-center content-center z-20 fixed top-0 left-0 bg-der-black w-full h-[100vh] opacity-100' + + return ( + <> + +
{ + event.stopPropagation() + setShowMenu(false) + }}> + +
    + +
+
+ + ) +} +export default CollapseNavBar \ No newline at end of file diff --git a/src/app/components/Footer.tsx b/src/app/components/Footer.tsx index 72f6768..d1d5367 100644 --- a/src/app/components/Footer.tsx +++ b/src/app/components/Footer.tsx @@ -13,29 +13,26 @@ const Footer = () => { const darkTheme = isDarkTheme(pathname) return ( -