Files
vantage/site/components/Footer.tsx
T
2026-07-28 12:46:28 +01:00

19 lines
485 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 server management for people who own their servers.</p>
{NAV_LINKS.map((link) => (
<Link key={link.href} href={link.href}>
{link.label}
</Link>
))}
<Link href="/start">Get started</Link>
</div>
</footer>
);
}