diff --git a/public/closebutton.jpg b/public/closebutton.jpg
deleted file mode 100644
index e68ec5d..0000000
Binary files a/public/closebutton.jpg and /dev/null differ
diff --git a/public/menubars.png b/public/menubars.png
deleted file mode 100644
index 70becdd..0000000
Binary files a/public/menubars.png and /dev/null differ
diff --git a/public/musicicon.png b/public/musicicon.png
new file mode 100644
index 0000000..f601cc7
Binary files /dev/null and b/public/musicicon.png differ
diff --git a/public/texticon.png b/public/texticon.png
new file mode 100644
index 0000000..4288c09
Binary files /dev/null and b/public/texticon.png differ
diff --git a/src/app/components/banner/landingBanner.tsx b/src/app/components/banner/landingBanner.tsx
new file mode 100644
index 0000000..eeb9fb9
--- /dev/null
+++ b/src/app/components/banner/landingBanner.tsx
@@ -0,0 +1,12 @@
+
+
+export default function LandingBanner(){
+ return(
+
+
+
Bem vindo ao Deafy!
+
Nosso aplicativo de música voltado à inclusão!
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/components/body/landingBody.tsx b/src/app/components/body/landingBody.tsx
index 47daff3..c5b7a5c 100644
--- a/src/app/components/body/landingBody.tsx
+++ b/src/app/components/body/landingBody.tsx
@@ -19,26 +19,7 @@ export default function LandingBody(){
return(
+ );
+}
\ No newline at end of file
diff --git a/src/app/components/header/landingHeader.tsx b/src/app/components/header/landingHeader.tsx
new file mode 100644
index 0000000..d054f86
--- /dev/null
+++ b/src/app/components/header/landingHeader.tsx
@@ -0,0 +1,30 @@
+import Image from "next/image"
+import Link from "next/link";
+import loginIcon from "../../../../public/loginIcon.png"
+import Button from "../button/button";
+
+interface ImageProps {
+ image: any;
+}
+
+export default function LandingHeader({image} : ImageProps) {
+ return (
+
+
+
+
+
+
Inscreva-se
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 7f9e966..5493b7e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -4,6 +4,7 @@ import "./globals.css";
import SideBar from "./components/bar/sideBar";
import NavBar from "./components/bar/navBar";
import Providers from "./Providers/providers";
+import HeaderHome from "./components/header/header";
const inter = Inter({ subsets: ["latin"] });
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 0803c42..4663325 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,6 +1,13 @@
-import LandingBody from "./components/body/landingBody";
+import LandingHeader from "./components/header/landingHeader";
import RootLayout from "./layout";
-
+import deafyicon from "../../public/deafyicon.png"
+import LandingBanner from "./components/banner/landingBanner";
+import LandingCard from "./components/card/landingCard";
+import texticon from "../../public/texticon.png"
+import upload from "../../public/upload.png"
+import music from "../../public/musicicon.png"
+import Button from "./components/button/button";
+import Link from "next/link";
export default function home() {
@@ -9,7 +16,28 @@ export default function home() {
return (
-
+
+
+