-
Notifications
You must be signed in to change notification settings - Fork 2
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
7 changed files
with
68 additions
and
19 deletions.
There are no files selected for viewing
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
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,54 @@ | ||
import TogethernessLogo from "/assets/images/aboutUs/togetherness.svg"; | ||
import { AspectRatio } from "@/components/ui/aspect-ratio"; | ||
import { Link } from "@inertiajs/react"; | ||
import { buttonVariants } from "@/components/ui/button"; | ||
|
||
const imageDescription = ""; | ||
|
||
export default function OurMission() { | ||
return ( | ||
<div className="flex flex-col md:flex-row py-8 lg:py-16 2xl:container mx-auto px-2 sm:px-8 gap-8 lg:gap-16"> | ||
<div className="flex flex-grow xl:flex-none md:w-2/3 flex-col justify-center gap-8"> | ||
<h2 className=" text-xl sm:text-2xl lg:text-3xl whitespace-pre-line font-semibold"> | ||
<span className="leading-snug"> | ||
Toi + Moi + Eux + Tous ceux qui le veulent | ||
</span> | ||
</h2> | ||
<p className=""> | ||
Benefactorum est un projet militant, créé par des donateurs ... pour | ||
des donateurs. | ||
</p> | ||
<p className=""> | ||
Benefactorum est un projet ouvert à toutes les bonnes volontés. La | ||
plateforme est <span className="italic">open source</span>, son | ||
contenu est participatif, sa gouvernance est horizontale. | ||
</p> | ||
<div className="flex items-center gap-8 flex-wrap"> | ||
<Link | ||
href="/nous-rejoindre" | ||
className={`${buttonVariants({ | ||
variant: "", | ||
size: "lg", | ||
})}`} | ||
> | ||
Nous rejoindre | ||
</Link> | ||
<Link href="/co-fondateurs" className="underline hover:text-primary"> | ||
Voir l’équipe de cofondateurs | ||
</Link> | ||
</div> | ||
</div> | ||
<div className="flex md:w-1/3 justify-center items-center"> | ||
<div className="w-[177.59px]"> | ||
<AspectRatio ratio={177.59 / 200}> | ||
<img | ||
src={TogethernessLogo} | ||
alt={imageDescription} | ||
title={imageDescription} | ||
/> | ||
</AspectRatio> | ||
</div> | ||
</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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
import HeroSection from "../../components/aboutUs/HeroSection"; | ||
import OurMisson from "../../components/aboutUs/OurMission"; | ||
import OurMission from "../../components/aboutUs/OurMission"; | ||
import Together from "../../components/aboutUs/Together"; | ||
|
||
export default function Home() { | ||
return ( | ||
<> | ||
<HeroSection /> | ||
<OurMisson /> | ||
<OurMission /> | ||
<Together /> | ||
</> | ||
); | ||
} |