55import { FadeIn } from "@/components/pages/landing/shared/FadeIn" ;
66import { SectionSubHeader } from "@/components/pages/landing/shared/Headings" ;
77
8- import fermatDark from "../../../../public/img/sponsors/fermat-dark.png" ;
9- import fermatLight from "../../../../public/img/sponsors/fermat.png" ;
8+ import deeporigin from "../../../../public/img/sponsors/deeporigin.svg" ;
9+ import fermatDark from "../../../../public/img/sponsors/fermat-dark.svg" ;
10+ import fermatLight from "../../../../public/img/sponsors/fermat.svg" ;
1011import nlnetDark from "../../../../public/img/sponsors/nlnet-dark.svg" ;
1112import nlnetLight from "../../../../public/img/sponsors/nlnet.svg" ;
1213import noteplanDark from "../../../../public/img/sponsors/noteplan-dark.png" ;
@@ -19,49 +20,63 @@ import typecellDark from "../../../../public/img/sponsors/typecell-dark.svg";
1920import typecellLight from "../../../../public/img/sponsors/typecell.svg" ;
2021
2122export const sponsorsCardData : SponsorCardProps [ ] = [
23+ {
24+ logo : {
25+ light : deeporigin ,
26+ dark : deeporigin ,
27+ } ,
28+ name : "Deep Origin" ,
29+ link : "https://www.deeporigin.com/" ,
30+ } ,
2231 {
2332 logo : {
2433 light : fermatLight ,
2534 dark : fermatDark ,
2635 } ,
2736 name : "Fermat" ,
37+ link : "https://fermat.app/" ,
2838 } ,
2939 {
3040 logo : {
3141 light : nlnetLight ,
3242 dark : nlnetDark ,
3343 } ,
3444 name : "NLNet" ,
45+ link : "https://nlnet.nl/" ,
3546 } ,
3647 {
3748 logo : {
38- light : typecellLight ,
39- dark : typecellDark ,
49+ light : noteplanLight ,
50+ dark : noteplanDark ,
4051 } ,
41- name : "TypeCell" ,
52+ name : "Noteplan" ,
53+ link : "https://noteplan.co/" ,
54+ tagline : "Apple Top Notes Apps" ,
4255 } ,
4356 {
4457 logo : {
4558 light : poggioLight ,
4659 dark : poggioDark ,
4760 } ,
4861 name : "Poggio" ,
62+ link : "https://poggio.io/" ,
4963 } ,
5064 {
5165 logo : {
5266 light : twentyLight ,
5367 dark : twentyDark ,
5468 } ,
5569 name : "Twenty" ,
70+ link : "https://twenty.com/" ,
5671 tagline : "YC S23" ,
5772 } ,
5873 {
5974 logo : {
60- light : noteplanLight ,
61- dark : noteplanDark ,
75+ light : typecellLight ,
76+ dark : typecellDark ,
6277 } ,
63- name : "Noteplan " ,
64- tagline : "Apple Top Notes Apps " ,
78+ name : "TypeCell " ,
79+ link : "https://www.typecell.org/ " ,
6580 } ,
6681] ;
6782
@@ -71,7 +86,7 @@ export function Sponsors() {
7186 < FadeIn >
7287 < SectionSubHeader > Sponsors & users</ SectionSubHeader >
7388 </ FadeIn >
74- < FadeIn className = "grid grid-cols-2 gap-0.5 overflow-hidden rounded-2xl md:grid-cols-3" >
89+ < FadeIn className = "grid grid-cols-2 gap-2 overflow-hidden md:grid-cols-3" >
7590 { sponsorsCardData . map ( ( sponsor ) => (
7691 < SponsorCard key = { sponsor . name } { ...sponsor } />
7792 ) ) }
0 commit comments