Files
hoanghapc_nextJs/src/components/other/Header/Logo.tsx
2026-01-13 17:22:12 +07:00

9 lines
235 B
TypeScript

import Link from "next/link";
export default function Logo(){
return(
<Link href="/">
<img src="/images/logo.png" alt="logo" width={1} height={1} className="block w-auto max-h-[56px]" />
</Link>
)
}