Merge pull request 'development' (#13) from development into feature/header

Reviewed-on: #13
This commit is contained in:
Savio Carvalho Moraes 2023-01-18 21:40:49 +00:00
commit 89417ad95d
7 changed files with 61 additions and 2 deletions

View File

@ -6,6 +6,7 @@
li {
margin-right: 10px;
}
padding: 0 0 0 0;
}
a {
text-decoration: none;
@ -20,3 +21,7 @@
}
}
}
img {
width: 35px;
height: 35px;
}

View File

@ -1,10 +1,10 @@
import React from "react";
import { Header } from "../sectors/Header/Header";
import { Footer } from "../sectors/Footer/Footer";
const Home = (prop: { titulo: string }) => {
return (
<div>
<Header></Header>
<Footer></Footer>
</div>
);
};

View File

@ -0,0 +1,11 @@
import { TopFooter } from "./TopFooter/TopFooter";
const Footer = () => {
return (
<div className="footer-wrapper">
<TopFooter></TopFooter>
</div>
);
};
export { Footer };

View File

@ -0,0 +1,28 @@
import { Institutional } from "../../../components/Institutional/Institutional";
import { Doubts } from "../../../components/Doubts/Doubts";
import { Contact } from "../../../components/Contact/Contact";
import { Socials } from "../../../components/Socials/Socials";
import { Whatsapp } from "../../../components/Whatsapp/Whatsapp";
const TopFooter = () => {
return (
<div className="top_footer">
<ul className="top_footer_itens">
<li className="top_footer_item">
<Institutional></Institutional>
</li>
<li className="top_footer_item">
<Doubts></Doubts>
</li>
<li className="top_footer_item">
<Contact></Contact>
</li>
<li className="top_footer_item">
<Socials></Socials>
<Whatsapp></Whatsapp>
</li>
</ul>
</div>
);
};
export { TopFooter };

View File

@ -7,3 +7,4 @@
@import "partials/navigation.scss";
@import "partials/top_header.scss";
@import "partials/bottom_header.scss";
@import "partials/top_footer.scss";

View File

@ -0,0 +1,3 @@
.footer-wrapper {
width: 100%;
}

View File

@ -0,0 +1,11 @@
.top_footer_itens {
display: flex;
flex-direction: row;
justify-content: space-around;
flex-flow: row wrap;
padding: 0 0 0 0 !important;
}
.top_footer_item {
display: flex;
flex-direction: row;
}