diff --git a/src/App.tsx b/src/App.tsx index 6be6e79..b0b80e5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,10 +1,10 @@ import React from "react"; -import { Header } from "./components/Header"; +import { Institutional } from "./pages/Institutional"; function App() { return ( <> -
+ ); } diff --git a/src/components/Header/styles.scss b/src/components/Header/header.module.scss similarity index 100% rename from src/components/Header/styles.scss rename to src/components/Header/header.module.scss diff --git a/src/components/Header/index.tsx b/src/components/Header/index.tsx index 449a68a..ef36ce6 100644 --- a/src/components/Header/index.tsx +++ b/src/components/Header/index.tsx @@ -1,5 +1,5 @@ import React from "react"; -import "./styles.scss"; +import styles from "./header.module.scss"; import logo from "../../assets/images/logo.png"; import cart from "../../assets/images/header-cart.png"; import search from "../../assets/images/header-search.png"; @@ -7,36 +7,36 @@ import menuButton from "../../assets/images/menu-button.png"; const Header = () => { return ( -
-
- -
+ -
+
-
-
- -
-
+
-
+
-
diff --git a/src/pages/Institutional/index.tsx b/src/pages/Institutional/index.tsx new file mode 100644 index 0000000..64a2a93 --- /dev/null +++ b/src/pages/Institutional/index.tsx @@ -0,0 +1,12 @@ +import React from "react"; +import { Header } from "../../components/Header"; + +const Institutional = () => { + return ( + <> +
+ + ); +}; + +export { Institutional };