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

7 lines
198 B
TypeScript
Raw Normal View History

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