Skip to content

Commit 4e2356b

Browse files
kiwicoppleclaude
andcommitted
Update footer: improve copyright, layout and links
- Change copyright to "Supabase, Inc." - Remove FAQ link (page doesn't exist) - Rename "Privacy Settings" to "Privacy" - Add GitHub link to dbdev repository - Restructure layout with left/right sections using flex justify-between 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 52f763e commit 4e2356b

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

website/components/layouts/Footer.tsx

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
import Link from 'next/link'
22

3-
export const links = [
4-
{ title: ` © Supabase`, url: 'https://supabase.com/' },
5-
{ title: 'FAQs', url: '/faq' },
3+
export const rightLinks = [
64
{ title: 'Open Source', url: 'https://supabase.com/open-source' },
7-
{ title: 'Privacy Settings', url: 'https://supabase.com/privacy' },
5+
{ title: 'Privacy', url: 'https://supabase.com/privacy' },
6+
{ title: 'GitHub', url: 'https://github.com/supabase/dbdev/' },
87
]
98

109
const Footer = () => (
1110
<footer role="menu" className="container w-full flex justify-between">
1211
<div className="border-t w-full py-4">
13-
<ul className="grid md:flex items-center gap-4 text-xs md:text-sm">
14-
{links.map((link, index) => (
15-
<li key={index}>
16-
<Link href={link.url}>{link.title}</Link>
17-
</li>
18-
))}
19-
</ul>
12+
<div className="flex items-center justify-between">
13+
<div className="text-xs md:text-sm">
14+
<Link href="https://supabase.com/">© Supabase, Inc.</Link>
15+
</div>
16+
<ul className="flex items-center gap-4 text-xs md:text-sm">
17+
{rightLinks.map((link, index) => (
18+
<li key={index}>
19+
<Link href={link.url}>{link.title}</Link>
20+
</li>
21+
))}
22+
</ul>
23+
</div>
2024
</div>
2125
</footer>
2226
)

0 commit comments

Comments
 (0)