We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ad05c commit 02f3462Copy full SHA for 02f3462
website/pages/index.tsx
@@ -70,7 +70,9 @@ const IndexPage: NextPageWithLayout = () => {
70
Popular packages
71
</p>
72
<div className="grid sm:grid-cols-8 md:grid-cols-12 gap-4">
73
- {data?.map((pkg: any) => <PackageCard key={pkg.id} pkg={pkg} />)}
+ {data?.map((pkg: any) => (
74
+ <PackageCard key={pkg.id} pkg={pkg} />
75
+ ))}
76
</div>
77
78
@@ -93,6 +95,14 @@ const IndexPage: NextPageWithLayout = () => {
93
95
<Link href="/installer" className="border-b">
94
96
here
97
</Link>
98
+ . Publish your own trusted language extension by following{' '}
99
+ <Link
100
+ href="https://supabase.github.io/dbdev/"
101
+ className="border-b"
102
+ >
103
+ the publishing guide
104
+ </Link>
105
+ .
106
107
108
0 commit comments