Skip to content

Commit ee3aa7a

Browse files
committed
Centre logos
1 parent 468a231 commit ee3aa7a

File tree

2 files changed

+37
-21
lines changed

2 files changed

+37
-21
lines changed

src/app/page.tsx

+16-11
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,22 @@ export default function Page() {
5252
</Section>
5353
<Section className="space-y-40">
5454
<div className="flex w-full max-w-2xl flex-col items-center space-y-6">
55-
<div className="flex w-full items-center justify-between gap-4">
56-
<Link className="w-36" href="/work#Cal.com">
57-
<Cal className="w-full" />
58-
</Link>
59-
<Link className="w-40" href="/work#Graphite">
60-
<Graphite className="w-full" />
61-
</Link>
62-
<Link className="w-48" href="/work#Albertsons">
63-
<Albertsons className="w-full" />
64-
</Link>
55+
<div className="grid w-full grid-cols-3 gap-4">
56+
<div className="flex justify-start">
57+
<Link className="w-36" href="/work#Cal.com">
58+
<Cal className="w-full" />
59+
</Link>
60+
</div>
61+
<div className="flex justify-center">
62+
<Link className="w-40" href="/work#Graphite">
63+
<Graphite className="w-full" />
64+
</Link>
65+
</div>
66+
<div className="flex justify-end">
67+
<Link className="w-48" href="/work#Albertsons">
68+
<Albertsons className="w-full" />
69+
</Link>
70+
</div>
6571
</div>
6672
<Link
6773
href="/work"
@@ -73,7 +79,6 @@ export default function Page() {
7379
</div>
7480
<Testimonials />
7581
<Partners />
76-
7782
<div className="flex flex-col gap-8">
7883
<h2 className="max-w-2xl text-7xl">{hook}</h2>
7984
<div className="flex items-center gap-4">

src/ui/partners.tsx

+21-10
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const partners = [
1616
},
1717
{
1818
name: 'Vercel',
19-
className: 'w-40',
19+
className: 'w-36',
2020
Icon: (props: { className: string }) => <Vercel {...props} />,
2121
href: 'https://vercel.com/partners/solution-partners/rubriclabs'
2222
},
@@ -34,17 +34,28 @@ export const Partners = () => {
3434
return (
3535
<div className="flex w-full max-w-2xl flex-col items-center space-y-6">
3636
<p className="text-secondary text-sm">Our partners</p>
37-
<div className="flex w-full items-center justify-between gap-4">
38-
{partners.map(({ name, href, Icon, className }) => (
39-
<Link
37+
<div className="grid w-full grid-cols-3 items-center justify-between gap-4">
38+
{partners.map(({ name, href, Icon, className }, index) => (
39+
<div
4040
key={name}
41-
href={href}
42-
onClick={() => posthog.capture('partner.clicked', { name, href })}
43-
target="_blank"
44-
className={cn(className)}
41+
className={cn(
42+
'flex',
43+
{
44+
0: 'justify-start',
45+
1: 'justify-center',
46+
2: 'justify-end'
47+
}[index]
48+
)}
4549
>
46-
<Icon className="w-full" />
47-
</Link>
50+
<Link
51+
href={href}
52+
onClick={() => posthog.capture('partner.clicked', { name, href })}
53+
target="_blank"
54+
className={cn(className)}
55+
>
56+
<Icon className="w-full" />
57+
</Link>
58+
</div>
4859
))}
4960
</div>
5061
</div>

0 commit comments

Comments
 (0)