You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
getcryst.al/components/navbar.tsx

16 lines
372 B
TypeScript

import Image from "next/image";
import Link from "next/link";
const Navbar = () => (
<header className="flex justify-between px-6 py-4">
<Link href="/">
<a className="flex gap-2 items-center font-semibold text-xl">
<Image src="/crystal.svg" width={30} height={30} />
Crystal Linux
</a>
</Link>
</header>
);
export default Navbar;