Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion packages/web/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import Link from "next/link";

export default async function Home() {
return (
<div className="flex flex-col items-center overflow-hidden">
<div className="flex flex-col items-center overflow-hidden min-h-screen">
<NavigationMenu />
<UpgradeToast />

Expand Down Expand Up @@ -98,6 +98,14 @@ export default async function Home() {
</div>
</div>
</div>

<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://github.com/sourcebot-dev/sourcebot/issues/new" className="text-gray-400 text-sm hover:underline">Support</Link>
<Separator orientation="vertical" className="h-4" />
<Link href="mailto:[email protected]" className="text-gray-400 text-sm hover:underline">Contact Us</Link>
</footer>
</div>
)
}
Expand Down
Loading