tasko/components/logo.tsx
2024-02-15 20:49:19 -05:00

17 lines
373 B
TypeScript

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