10 lines
265 B
TypeScript
Raw Permalink Normal View History

2025-02-24 15:52:36 +07:00
import Link from "next/link";
export function Logo({ width = "w-28" }: { width?: string }) {
return (
<Link href="/" className="flex items-end space-x-2">
<img src="/images/logo.svg" alt="Logo" className={width} />
</Link>
);
}