-
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.
* Redo the design * fix error * Update components/Banners.tsx Co-authored-by: Rui Lopes <[email protected]> --------- Co-authored-by: Rui Lopes <[email protected]>
- Loading branch information
Showing
23 changed files
with
363 additions
and
153 deletions.
There are no files selected for viewing
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
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
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,37 @@ | ||
import LinkButton from "./LinkButton"; | ||
import Image from "next/image"; | ||
import calendarium from "@/public/calendarium.png"; | ||
|
||
export default function PartnerBenefits() { | ||
return ( | ||
<div className="flex gap-20 bg-cesium-orange px-80 py-10 text-center"> | ||
<Image src={calendarium} width={384} height={384} alt=""></Image> | ||
|
||
<div className="flex flex-col items-start justify-start gap-4"> | ||
<h2 className="mt-10 font-orbitron text-4xl font-bold text-white"> | ||
Ja ouviste falar no Calendarium? | ||
</h2> | ||
<p className="w-[700px] text-justify text-sm text-white"> | ||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime | ||
explicabo nobis temporibus nam, dolorum est sequi quasi corrupti, | ||
illum optio ducimus harum? | ||
</p> | ||
<ul className="list-inside list-disc text-justify font-inter text-sm font-normal text-white"> | ||
{[ | ||
"lorem ipsum dolor sit amet", | ||
"lorem ipsum dolor sit amet", | ||
"lorem ipsum dolor sit amet", | ||
"lorem ipsum dolor sit amet", | ||
].map((item, index) => ( | ||
<li key={index}>{item}</li> | ||
))} | ||
</ul> | ||
<LinkButton | ||
className="bg-white px-6 py-4 font-orbitron text-base text-cesium-orange" | ||
title="Saber mais" | ||
linkPath="/" | ||
/> | ||
</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
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
Oops, something went wrong.