-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📝 layout tela sobre - pronto pra estilizar
- Loading branch information
1 parent
58e5efd
commit cc83b72
Showing
3 changed files
with
31 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import Image from "next/image"; | ||
|
||
export const Sobre = () => { | ||
return ( | ||
<div className="flex"> | ||
<div className="bg-teal-500 w-80 h-screen p-4"> | ||
<p className="text-white font-bold text-2xl mt-4 mb-4">Confira a quantidade de avisos de licitação nos municípios do Ceará.</p> | ||
<p className="text-white mt-4">Este projeto foi realizado pelo Squad 07 durante o segundo semestre de 2023 na disciplina Métodos de Desenvolvimento de Software da Universidade de Brasília.</p> | ||
{/* Logo da Universidade com dois espaços */} | ||
<Image | ||
alt="logo-unb" | ||
width={240} | ||
height={240} | ||
src="https://i.pinimg.com/originals/84/a7/86/84a786798c453d6a536f31cba73e5409.png" | ||
/> | ||
</div> | ||
</div> | ||
) | ||
} |
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 +1,2 @@ | ||
export { Home } from './Home'; | ||
export { Home } from './Home'; | ||
export { Sobre } from './Sobre'; |
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,5 +1,12 @@ | ||
const Sobre = () => ( | ||
<div>sobre</div> | ||
import { Footer, Navbar } from '@/components/Layout'; | ||
import { Sobre } from '@/components/Pages'; | ||
|
||
const SobrePage = () => ( | ||
<div className="flex flex-col h-screen"> | ||
<Navbar /> | ||
<Sobre /> | ||
<Footer /> | ||
</div> | ||
); | ||
|
||
export default Sobre; | ||
export default SobrePage; |