blob: 13da67c6bdd7569300bfe48cf34c3e311ac461c6 (
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="/legal"
className="text-muted-foreground/60 transition-colors hover:text-foreground"
>
Legal
</Link>
</div>
<Panda />
</div>
</footer>
)
}
|