Logo.jsx 294 B

12345678910
  1. import Image from 'next/image'
  2. export function Logo() {
  3. return (
  4. <div className="hidden min-w-full items-center gap-2 lg:flex">
  5. <Image src="/logo.png" alt="Logo" width={30} height={30} />
  6. <span className="text-xl font-semibold dark:text-white">Anchor</span>
  7. </div>
  8. )
  9. }