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(
- Deafy Icon - Menu bars - Close button +
diff --git a/src/app/components/card/landingCard.tsx b/src/app/components/card/landingCard.tsx new file mode 100644 index 0000000..e154564 --- /dev/null +++ b/src/app/components/card/landingCard.tsx @@ -0,0 +1,21 @@ +import Image from "next/image"; + +interface ImageProps { + imagem: any; + titulo : string; + texto : string; +} + +export default function LandingCard({imagem, titulo, texto} : ImageProps) { + return( +
+
+ Text Icon +
+
+

{titulo}

+

{texto}

+
+
+ ); +} \ 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 ( +
+ + Deafy Icon +
+ +

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 ( - + + +
+

Porque utilizar o Deafy?

+
+ + + +
+
+
+

É grátis.

+

Só baixar e usar.

+
+
+

Venha se juntar a nós.

+ +
+
+
); }