-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from unb-mds/mudancaHome
Novos Componentes e Dashboard Interativo na Guia de Pesquisa
- Loading branch information
Showing
19 changed files
with
923 additions
and
561 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,23 @@ | ||
"use client"; | ||
|
||
import { Search, MapPin, CalendarClock, MoveRight } from "lucide-react"; | ||
import { Search, MapPin, CalendarClock, MoveRight } from "lucide-react"; | ||
import Busca from "@/components/Busca"; | ||
import dynamic from 'next/dynamic'; | ||
import Slider from "@/components/Slider"; | ||
import Pilares from "@/components/Pilares"; | ||
|
||
const Grafico = dynamic(() => import('@/components/Grafico'), { ssr: false }); | ||
import Mensagem from "@/components/Mensagem"; | ||
import Grafico from '@/components/Grafico'; | ||
|
||
export default function Home() { | ||
return ( | ||
<main className="bg-primary-gray dark:bg-neutral-900 flex flex-col items-center min-h-screen gap-10 p-12"> | ||
<div className="container font-sans"> | ||
<Slider /> | ||
<Pilares /> | ||
</div> | ||
<div className="container w-full h-auto bg-primary-white dark:bg-neutral-800 rounded-lg"> | ||
{/* Conteúdo adicional pode ir aqui */} | ||
</div> | ||
<Mensagem /> | ||
<Slider /> | ||
<Grafico /> | ||
<Busca /> | ||
<div className="container font-sans mb-5"> | ||
<Pilares /> | ||
</div> | ||
</main> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.