-
Notifications
You must be signed in to change notification settings - Fork 271
Expand file tree
/
Copy pathfooter.tsx
More file actions
16 lines (15 loc) · 900 Bytes
/
footer.tsx
File metadata and controls
16 lines (15 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Link from "next/link";
import { Separator } from "@/components/ui/separator";
export function Footer() {
return (
<footer className="w-full mt-auto py-4 flex flex-row justify-center items-center gap-4">
<Link href="https://sourcebot.dev" className="text-gray-400 text-sm hover:underline">About</Link>
<Separator orientation="vertical" className="h-4" />
<Link href="https://docs.sourcebot.dev" className="text-gray-400 text-sm hover:underline">Docs</Link>
<Separator orientation="vertical" className="h-4" />
<Link href="https://sourcebot.dev/security" className="text-gray-400 text-sm hover:underline">Security</Link>
<Separator orientation="vertical" className="h-4" />
<Link href="https://www.sourcebot.dev/contact" target="_blank" className="text-gray-400 text-sm hover:underline">Contact Us</Link>
</footer>
)
}