+ Institucional
diff --git a/src/components/MenuSideBar/MenuSideBar.module.scss b/src/components/Main/MenuSideBar/MenuSideBar.module.scss
similarity index 96%
rename from src/components/MenuSideBar/MenuSideBar.module.scss
rename to src/components/Main/MenuSideBar/MenuSideBar.module.scss
index 3d32f68..1e944ea 100644
--- a/src/components/MenuSideBar/MenuSideBar.module.scss
+++ b/src/components/Main/MenuSideBar/MenuSideBar.module.scss
@@ -1,4 +1,4 @@
-@use '../../variables';
+@use '../../../variables';
.menu-sidebar {
border-right: 1px solid variables.$black;
diff --git a/src/components/MenuSideBar/MenuSideBar.tsx b/src/components/Main/MenuSideBar/MenuSideBar.tsx
similarity index 100%
rename from src/components/MenuSideBar/MenuSideBar.tsx
rename to src/components/Main/MenuSideBar/MenuSideBar.tsx
diff --git a/src/components/Routes/InstitucionalRoutes.tsx b/src/components/Main/Routes/InstitucionalRoutes.tsx
similarity index 100%
rename from src/components/Routes/InstitucionalRoutes.tsx
rename to src/components/Main/Routes/InstitucionalRoutes.tsx
diff --git a/src/components/Routes/RoutesPages/Contato.tsx b/src/components/Main/Routes/RoutesPages/Contato.tsx
similarity index 74%
rename from src/components/Routes/RoutesPages/Contato.tsx
rename to src/components/Main/Routes/RoutesPages/Contato.tsx
index 81e3e12..f4eb92e 100644
--- a/src/components/Routes/RoutesPages/Contato.tsx
+++ b/src/components/Main/Routes/RoutesPages/Contato.tsx
@@ -1,16 +1,16 @@
import React from "react";
-import { InstitucionalForm } from "../../InstitucionalForm/InstitucionalForm";
-
import styles from "./RoutesPages.module.scss";
+import { RegistrationForm } from "../../../Form/RegistrationForm";
+
const Contato = () => {
return (
Preencha o Formulário
-
+
);
}
diff --git a/src/components/Routes/RoutesPages/Entrega.tsx b/src/components/Main/Routes/RoutesPages/Entrega.tsx
similarity index 100%
rename from src/components/Routes/RoutesPages/Entrega.tsx
rename to src/components/Main/Routes/RoutesPages/Entrega.tsx
diff --git a/src/components/Routes/RoutesPages/FormaDePagamento.tsx b/src/components/Main/Routes/RoutesPages/FormaDePagamento.tsx
similarity index 100%
rename from src/components/Routes/RoutesPages/FormaDePagamento.tsx
rename to src/components/Main/Routes/RoutesPages/FormaDePagamento.tsx
diff --git a/src/components/Routes/RoutesPages/RoutesPages.module.scss b/src/components/Main/Routes/RoutesPages/RoutesPages.module.scss
similarity index 96%
rename from src/components/Routes/RoutesPages/RoutesPages.module.scss
rename to src/components/Main/Routes/RoutesPages/RoutesPages.module.scss
index 15ffb30..f08702b 100644
--- a/src/components/Routes/RoutesPages/RoutesPages.module.scss
+++ b/src/components/Main/Routes/RoutesPages/RoutesPages.module.scss
@@ -1,4 +1,4 @@
-@use '../../../variables';
+@use '../../../../variables';
.institucional__content {
width: 100%;
diff --git a/src/components/Routes/RoutesPages/SegurancaEPrivacidade.tsx b/src/components/Main/Routes/RoutesPages/SegurancaEPrivacidade.tsx
similarity index 100%
rename from src/components/Routes/RoutesPages/SegurancaEPrivacidade.tsx
rename to src/components/Main/Routes/RoutesPages/SegurancaEPrivacidade.tsx
diff --git a/src/components/Routes/RoutesPages/Sobre.tsx b/src/components/Main/Routes/RoutesPages/Sobre.tsx
similarity index 100%
rename from src/components/Routes/RoutesPages/Sobre.tsx
rename to src/components/Main/Routes/RoutesPages/Sobre.tsx
diff --git a/src/components/Routes/RoutesPages/TrocaEDevolucao.tsx b/src/components/Main/Routes/RoutesPages/TrocaEDevolucao.tsx
similarity index 100%
rename from src/components/Routes/RoutesPages/TrocaEDevolucao.tsx
rename to src/components/Main/Routes/RoutesPages/TrocaEDevolucao.tsx
diff --git a/src/components/Newsletter/Newsletter.module.scss b/src/components/Newsletter/Newsletter.module.scss
index 69d026a..6eb38d3 100644
--- a/src/components/Newsletter/Newsletter.module.scss
+++ b/src/components/Newsletter/Newsletter.module.scss
@@ -8,6 +8,7 @@
align-items: center;
border-top: 1px solid variables.$black;
border-bottom: 1px solid variables.$black;
+ padding: 0 100px;
}
&__form {
diff --git a/src/components/TitlePrincipal/TitlePrincipal.tsx b/src/components/TitlePrincipal/TitlePrincipal.tsx
deleted file mode 100644
index f13c422..0000000
--- a/src/components/TitlePrincipal/TitlePrincipal.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import React from "react";
-
-interface Title {
- text: string;
- titleClassName?: string;
-}
-
-const TitlePrincipal = ( props: Title) => {
- const { text, titleClassName } = props;
-
- return
{ text }
;
-};
-
-export { TitlePrincipal };
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index 797ef2d..b0a9211 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -2,12 +2,9 @@ import React from "react";
import styles from "./Home.module.scss";
-import { HeaderTop } from "../components/HeaderTop/HeaderTop";
-import { HeaderBottom } from "../components/HeaderBottom/HeaderBottom";
+import { Header } from "../components/Header/Header";
import { Main } from "../components/Main/Main";
-import { Newsletter } from "../components/Newsletter/Newsletter";
-import { FooterTop } from "../components/FooterTop/FooterTop";
-import { FooterBottom } from "../components/FooterBottom/FooterBottom";
+import { Footer } from "../components/Footer/Footer";
import { WhatsAppAndScrollTop } from "../components/WhatsAppAndScrollTop/WhatsAppAndScrollTop";
const Home = () => {
@@ -15,8 +12,7 @@ const Home = () => {
return (
<>
@@ -24,11 +20,10 @@ const Home = () => {
+
+
>
);
}