tasko/components/logo.tsx

13 lines
325 B
TypeScript
Raw Normal View History

2024-02-15 02:30:10 +00:00
import Image from "next/image";
import Link from "next/link";
export const Logo = () => {
return (
<Link href="/">
<div className="hover:opacity-75 transition items-center gap-x-2 hidden md:flex">
<Image src="/logo-transparent.svg" alt="logo" height={100} width={100} />
</div>
</Link>
);
};