-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP customer support * wip * clean-up * fix * lint * Updating multiple components * Pushed an updated version * iteration * clean-up --------- Co-authored-by: Edouard Wautier <[email protected]>
- Loading branch information
Showing
15 changed files
with
467 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import Image from "next/image"; | ||
|
||
import { H3 } from "@app/components/home/ContentComponents"; | ||
import { classNames } from "@app/lib/utils"; | ||
|
||
export default function TrustedBy() { | ||
return ( | ||
<> | ||
<div | ||
className={classNames( | ||
"col-span-12 flex flex-col items-center py-8", | ||
"lg:col-span-12 lg:col-start-1", | ||
"xl:col-span-10 xl:col-start-2" | ||
)} | ||
> | ||
<H3 className="w-full text-center text-white"> | ||
Trusted by 500+ organizations, including: | ||
</H3> | ||
<div | ||
className={classNames( | ||
"mt-8 max-w-[400px] sm:w-full sm:max-w-none", | ||
"grid grid-cols-2 gap-x-2", | ||
"sm:grid-cols-3 sm:gap-x-16", | ||
"md:grid-cols-4 md:gap-x-16" | ||
)} | ||
> | ||
<Image | ||
alt="alan" | ||
src="/static/landing/logos/alan.png" | ||
width={600} | ||
height={300} | ||
/> | ||
<Image | ||
alt="watershed" | ||
src="/static/landing/logos/watershed.png" | ||
width={600} | ||
height={300} | ||
/> | ||
<Image | ||
alt="qonto" | ||
src="/static/landing/logos/qonto.png" | ||
width={600} | ||
height={300} | ||
/> | ||
<Image | ||
alt="pennylane" | ||
src="/static/landing/logos/pennylane.png" | ||
width={600} | ||
height={300} | ||
/> | ||
<Image | ||
alt="payfit" | ||
src="/static/landing/logos/payfit.png" | ||
width={600} | ||
height={300} | ||
/> | ||
<Image | ||
alt="watershed" | ||
src="/static/landing/logos/malt.png" | ||
width={600} | ||
height={300} | ||
/> | ||
<Image | ||
alt="hivebrite" | ||
src="/static/landing/logos/hivebrite.png" | ||
width={600} | ||
height={300} | ||
/> | ||
<Image | ||
alt="blueground" | ||
src="/static/landing/logos/blueground.png" | ||
width={600} | ||
height={300} | ||
/> | ||
</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
Oops, something went wrong.