diff --git a/src/app/components/About.js b/src/app/components/About.js index e9bae706c2e99fced5fe4cfc46d5d7a93d0a30b2..a650e3cb5fab8c88ff1f37093a0bfbf407f7841f 100644 --- a/src/app/components/About.js +++ b/src/app/components/About.js @@ -320,6 +320,12 @@ export default function AboutComponent() { link="/equipe" /> </div> + <DevelopmentInfo + title="Estatísticas" + description="Veja as estatísticas de uso da plataforma." + access="Clique aqui para ver as estatísticas." + link="/estatisticas" + /> </> ) } @@ -351,7 +357,7 @@ export default function AboutComponent() { <div className="flex flex-col text-center items-center mt-12 rounded-lg bg-white"> <Differences /> </div> - <div className="flex flex-col text-center items-center mt-12 rounded-lg bg-white"> + <div className="flex flex-col text-center items-center mt-12 pb-[40px] rounded-lg bg-white"> <Development /> </div> <div className="flex justify-center flex-col items-center mt-8 max-md:mt-0 max-md:mb-8"> diff --git a/src/app/components/Overlay.js b/src/app/components/Overlay.js index 18aa5f0cc0a9c2e4817fec0dd08207f187b06533..059e5d88c87aed5b8574ab53d5e707cf3c8c0317 100644 --- a/src/app/components/Overlay.js +++ b/src/app/components/Overlay.js @@ -60,7 +60,7 @@ export default function Overlay({ return ( <Suspense fallback={<Loading />}> <ThemeProvider theme={theme}> - <main className="bg-main bg-fundo bg-repeat bg-fixed text-base"> + <main className="bg-main bg-fundo bg-repeat bg-fixed text-base min-h-dvh"> <div className="hidden md:block"> <AcessibilityBar /> </div> diff --git a/src/app/estatisticas/page.js b/src/app/estatisticas/page.js new file mode 100644 index 0000000000000000000000000000000000000000..1b912d6ebf59c4c8b2cc20fd13d743ae58358441 --- /dev/null +++ b/src/app/estatisticas/page.js @@ -0,0 +1,19 @@ +"use client" +import Overlay from "../components/Overlay" + +export default function About() { + + return ( + <Overlay type="twoColumns"> + <div className="m-3 sm:ml-24 "> + <iframe + className=" w-[90%] h-[72dvh]" + id="statistics" + title="Estatísticas" + src="https://metabase.c3sl.ufpr.br/public/dashboard/b50e207e-45fe-4419-a86c-04d944544828" + > + </iframe> + </div> + </Overlay> + ) +}