-
Notifications
You must be signed in to change notification settings - Fork 0
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 #85 from mdsreq-fga-unb/ConsultarContatos
[US18]: Consultar contatos da Empresa
- Loading branch information
Showing
31 changed files
with
1,172 additions
and
170 deletions.
There are no files selected for viewing
File renamed without changes.
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,18 @@ | ||
import { useState } from 'react' | ||
import reactLogo from './assets/react.svg' | ||
import viteLogo from '/vite.svg' | ||
import './App.css' | ||
import React, { useEffect } from 'react'; | ||
import { BrowserRouter as Router, Route, Routes} from 'react-router-dom'; | ||
import ContactPage from './pages/ContactPage'; | ||
|
||
function App() { | ||
const [count, setCount] = useState(0) | ||
const App = () => { | ||
useEffect(() => { | ||
}, []); | ||
|
||
return ( | ||
<> | ||
<div> | ||
<a href="https://vite.dev" target="_blank"> | ||
<img src={viteLogo} className="logo" alt="Vite logo" /> | ||
</a> | ||
<a href="https://react.dev" target="_blank"> | ||
<img src={reactLogo} className="logo react" alt="React logo" /> | ||
</a> | ||
</div> | ||
<h1>Vite + React</h1> | ||
<div className="card"> | ||
<button onClick={() => setCount((count) => count + 1)}> | ||
count is {count} | ||
</button> | ||
<p> | ||
Edit <code>src/App.jsx</code> and save to test HMR | ||
</p> | ||
</div> | ||
<p className="read-the-docs"> | ||
Click on the Vite and React logos to learn more | ||
</p> | ||
</> | ||
) | ||
} | ||
<Router> | ||
<Routes> | ||
<Route path='/' element={<ContactPage />} /> | ||
</Routes> | ||
</Router> | ||
); | ||
}; | ||
|
||
export default App | ||
export default App; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import React from "react"; | ||
import { DivFooter, CopyRigthSection, Conteudo, Divisao1, ParteSuperior, Divisao2, DivisaoTelefone } from "./styled"; | ||
import { FaPhoneAlt } from "react-icons/fa"; | ||
|
||
function Footer() { | ||
return ( | ||
<DivFooter> | ||
<Conteudo> | ||
|
||
<ParteSuperior> | ||
<img src="../src/assets/FamiliaDoSitioBorda.png" className="logo-img"/> | ||
<Divisao1> | ||
<div className="info1"> | ||
<ul className="institucional list"> | ||
<li className="title">INSTITUCIONAL</li> | ||
<li><a href="#">• NOSSA HISTÓRIA</a></li> | ||
<li><a href="#">• VISITE A FÁBRICA</a></li> | ||
<li><a href="#">• TRABALHE CONOSCO</a></li> | ||
</ul> | ||
</div> | ||
|
||
<div className="info2"> | ||
<ul className="social-medias list"> | ||
<li className="title">REDES SOCIAIS</li> | ||
<li><a href="https://www.instagram.com/cafedositio/" target="_blank">• INSTAGRAM</a></li> | ||
<li><a href="https://www.facebook.com/cafedositio" target="_blank">• FACEBOOK</a></li> | ||
<li><a href="https://www.youtube.com/@cafedositio7991" target="_blank">• YOUTUBE</a></li> | ||
<li><a href="https://x.com/cafe_do_sitio" target="_blank">• X/TWITTER</a></li> | ||
<li><a href="https://www.linkedin.com/company/cafedositio/" target="_blank">• LINKEDIN</a></li> | ||
</ul> | ||
</div> | ||
</Divisao1> | ||
|
||
<Divisao2> | ||
<h1 className="title">FALE CONOSCO</h1> | ||
|
||
<DivisaoTelefone> | ||
<FaPhoneAlt size={28} color="white"/> | ||
<label className="number">(61) 2108-0101</label> | ||
</DivisaoTelefone> | ||
|
||
<p>[email protected]</p> | ||
<p>Segunda a quinta das 08h às 18h e <br/> Sexta das 08h às 17h</p> | ||
<a>Perguntas Frequentes</a> | ||
</Divisao2> | ||
|
||
</ParteSuperior> | ||
|
||
|
||
|
||
<CopyRigthSection> | ||
<p>Café do Sítio Indústria e Comércio Ltda - Todos os direitos reservados <br/> QS 09 RUA 100 LOTE 04 - Taguatinga - Distrito Federal - CNPJ: 00.452.102/0001-48</p> | ||
<img src="../src/assets/UnBLogo.png"/> | ||
</CopyRigthSection> | ||
|
||
</Conteudo> | ||
</DivFooter> | ||
); | ||
} | ||
|
||
export default Footer; |
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,149 @@ | ||
import styled from "styled-components"; | ||
|
||
export const DivFooter = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
padding-top: 60px; | ||
width: 100%; | ||
background: #006343; | ||
margin-top: 50px; | ||
.logo-img{ | ||
margin-top: -20px; | ||
width: 180px; | ||
height: auto; | ||
} | ||
`; | ||
|
||
export const Conteudo = styled.div` | ||
padding-inline: 4.5rem; | ||
@media (max-width: 850px) { | ||
padding-inline: 2vw; | ||
} | ||
`; | ||
|
||
export const ParteSuperior = styled.div` | ||
display: flex; | ||
flex-direction: row; | ||
row-gap: 2.0rem; | ||
column-gap: 6rem; | ||
flex-wrap: wrap; | ||
padding-bottom: 2.5rem; | ||
justify-content: center; | ||
border-bottom: 1px solid white; | ||
`; | ||
|
||
export const Divisao1 = styled.div` | ||
display: flex; | ||
flex-direction: row; | ||
gap: 6rem; | ||
ul { | ||
margin: 0px; | ||
padding: 0px; | ||
.title { | ||
color: white; | ||
font-weight: bold; | ||
font-size: 1.0rem; | ||
margin-bottom: 15px; | ||
} | ||
} | ||
li { | ||
list-style: none; | ||
margin: 0px; | ||
a { | ||
text-decoration: none; | ||
color: white; | ||
font-size: 0.8rem; | ||
&:hover{ | ||
text-decoration: underline; | ||
} | ||
} | ||
} | ||
`; | ||
|
||
export const Divisao2 = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
gap: 10px; | ||
color: white; | ||
.title{ | ||
color: white; | ||
font-weight: bold; | ||
font-size: 1.0rem; | ||
margin-bottom: 15px; | ||
margin: 0px; | ||
} | ||
p { | ||
margin: 0px; | ||
font-size: 0.8rem; | ||
} | ||
a { | ||
&:hover{ | ||
text-decoration: underline; | ||
cursor: pointer; | ||
} | ||
} | ||
`; | ||
|
||
export const DivisaoTelefone = styled.div` | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
gap: 1.0rem; | ||
label { | ||
font-weight: bold; | ||
font-size: 2.0rem; | ||
} | ||
`; | ||
|
||
export const CopyRigthSection = styled.div` | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-items: center; | ||
p{ | ||
color: white; | ||
font-size: 1.0rem; | ||
} | ||
img { | ||
width: 12.0rem; | ||
height: auto; | ||
} | ||
@media (max-width: 1420px) { | ||
p { | ||
font-size: 0.7rem; | ||
} | ||
img { | ||
width: 11.0rem; | ||
height: auto; | ||
} | ||
} | ||
@media (max-width: 850px) { | ||
padding-inline: 2vw; | ||
p { | ||
font-size: 0.5rem; | ||
} | ||
img { | ||
width: 9.0rem; | ||
height: auto; | ||
} | ||
} | ||
`; |
Oops, something went wrong.