Files
vantage/site/components/Footer.tsx
T
mrhid6 1a6cf03c03
Server Deploy / deploy (push) Failing after 1m59s
feat: Removed comments
2026-07-24 09:51:30 +01:00

19 lines
501 B
TypeScript

import Link from "next/link";
import { NAV_LINKS } from "@/components/nav-links";
export function Footer() {
return (
<footer className="foot">
<div className="rail foot__in">
<p>Vantage self-hosted fleet control for people who own their servers.</p>
{NAV_LINKS.map((link) => (
<Link key={link.href} href={link.href}>
{link.label}
</Link>
))}
<Link href="/start">Create organisation</Link>
</div>
</footer>
);
}