forked from AllysonAlves1/deafy-front
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
96 additions
and
23 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
|
||
export default function LandingBanner(){ | ||
return( | ||
<div className="bg-landingImage bg-center bg-cover bg-no-repeat h-96 w-full border-b-4"> | ||
<div className="flex flex-col justify-center items-center w-full h-full backdrop-blur-sm"> | ||
<h2 className="text-white text-4xl font-bold">Bem vindo ao Deafy!</h2> | ||
<p className="text-white">Nosso aplicativo de música voltado à inclusão!</p> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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( | ||
<div className=" flex px-2 gap-2"> | ||
<div className="flex items-center justify-center bg-gradient-to-b from-slate-300 via-slate-500 to-slate-800 rounded-full max-w-[6rem] min-w-[6rem] h-24"> | ||
<Image src={imagem} alt="Text Icon" className="w-14"/> | ||
</div> | ||
<div className="flex flex-col justify-center"> | ||
<h2 className="text-xl font-semibold">{titulo}</h2> | ||
<p className="">{texto}</p> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 ( | ||
<div className="flex justify-between p-4 items-center bg-slate-800 h-16"> | ||
|
||
<Image | ||
src={image} | ||
style={{ cursor:"pointer" }} | ||
alt="Deafy Icon" | ||
className=" w-16" | ||
/> | ||
<div className="flex items-center gap-2"> | ||
<Link href='/register'> | ||
<p className="text-neutral-300 font-semibold hover:text-white focus:underline">Inscreva-se</p> | ||
</Link> | ||
<Link href='/login'> | ||
<Button nome="Entrar"/> | ||
</Link> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters