KronosHSB 1c4eec6d92 init
2025-02-24 15:52:36 +07:00

10 lines
265 B
TypeScript

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>
);
}