Skip to content

Commit 02f3462

Browse files
committed
add link to the publishing docs
1 parent 27ad05c commit 02f3462

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

website/pages/index.tsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ const IndexPage: NextPageWithLayout = () => {
7070
Popular packages
7171
</p>
7272
<div className="grid sm:grid-cols-8 md:grid-cols-12 gap-4">
73-
{data?.map((pkg: any) => <PackageCard key={pkg.id} pkg={pkg} />)}
73+
{data?.map((pkg: any) => (
74+
<PackageCard key={pkg.id} pkg={pkg} />
75+
))}
7476
</div>
7577
</div>
7678

@@ -93,6 +95,14 @@ const IndexPage: NextPageWithLayout = () => {
9395
<Link href="/installer" className="border-b">
9496
here
9597
</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+
.
96106
</p>
97107
</div>
98108
</div>

0 commit comments

Comments
 (0)