diff --git a/src/components/Socials/socials.module.scss b/src/components/Socials/socials.module.scss
index e4413e1..40a5ae8 100644
--- a/src/components/Socials/socials.module.scss
+++ b/src/components/Socials/socials.module.scss
@@ -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;
+}
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index c6b0629..f210d37 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -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 (
-
+
);
};
diff --git a/src/sectors/Footer/Footer.tsx b/src/sectors/Footer/Footer.tsx
new file mode 100644
index 0000000..db822e2
--- /dev/null
+++ b/src/sectors/Footer/Footer.tsx
@@ -0,0 +1,11 @@
+import { TopFooter } from "./TopFooter/TopFooter";
+
+const Footer = () => {
+ return (
+
+
+
+ );
+};
+
+export { Footer };
diff --git a/src/sectors/Footer/TopFooter/TopFooter.tsx b/src/sectors/Footer/TopFooter/TopFooter.tsx
new file mode 100644
index 0000000..9a2f65d
--- /dev/null
+++ b/src/sectors/Footer/TopFooter/TopFooter.tsx
@@ -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 (
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+
+ );
+};
+
+export { TopFooter };
diff --git a/src/styles/main.scss b/src/styles/main.scss
index be35855..cb06bce 100644
--- a/src/styles/main.scss
+++ b/src/styles/main.scss
@@ -7,3 +7,4 @@
@import "partials/navigation.scss";
@import "partials/top_header.scss";
@import "partials/bottom_header.scss";
+@import "partials/top_footer.scss";
diff --git a/src/styles/partials/footer.scss b/src/styles/partials/footer.scss
new file mode 100644
index 0000000..285dd35
--- /dev/null
+++ b/src/styles/partials/footer.scss
@@ -0,0 +1,3 @@
+.footer-wrapper {
+ width: 100%;
+}
diff --git a/src/styles/partials/top_footer.scss b/src/styles/partials/top_footer.scss
new file mode 100644
index 0000000..9050a4d
--- /dev/null
+++ b/src/styles/partials/top_footer.scss
@@ -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;
+}