mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 04:15:30 +00:00
Add footer to homepage (#151)
This commit is contained in:
parent
2c1de4d005
commit
af8559678c
1 changed files with 9 additions and 1 deletions
|
|
@ -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 />
|
||||
|
||||
|
|
@ -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:team@sourcebot.dev" className="text-gray-400 text-sm hover:underline">Contact Us</Link>
|
||||
</footer>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue