Files
hoanghapc_nextJs/src/components/other/Header/Logo.tsx

9 lines
235 B
TypeScript
Raw Normal View History

2026-01-13 17:22:12 +07:00
import Link from "next/link";
2025-12-29 17:43:31 +07:00
export default function Logo(){
return(
2026-01-13 17:22:12 +07:00
<Link href="/">
2025-12-29 17:43:31 +07:00
<img src="/images/logo.png" alt="logo" width={1} height={1} className="block w-auto max-h-[56px]" />
2026-01-13 17:22:12 +07:00
</Link>
2025-12-29 17:43:31 +07:00
)
}