blob: b78b8b354b129195f88d0f1c3c9104b063d9a95e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import Link from 'next/link'
import { Panda } from './panda'
export function Footer() {
return (
<footer className="mx-auto max-w-[var(--site-width)] py-4">
<div className="flex items-center justify-between">
<div className="flex gap-4">
<Link
href="/privacy"
className="text-muted-foreground/60 transition-colors hover:text-foreground"
>
Privacy
</Link>
</div>
<Panda />
</div>
</footer>
)
}
|