Files
website/app/components/navbar.tsx
2025-02-22 20:58:25 +01:00

11 lines
280 B
TypeScript

import Link from "./link";
export default function Navbar() {
return (
<div className="bg-slate-700 rounded-md p-2 mx-2 mt-2 w-[calc(100vw-16px)] flex gap-2 fixed">
<Link link="/" children="Home" />
<Link link="/contact" children="Contact" />
</div>
);
}