refactor: Improve responsiveness of Features component layout
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
|
||||
import Image from "next/image";
|
||||
export default function Logo({ withText, ...props }: any) {
|
||||
return (
|
||||
<div className="flex items-center m-0" {...props}>
|
||||
<img src="/logo.png" alt="Zen Logo" className="w-12 h-12" />
|
||||
<Image src="/logo.png" alt="Zen Logo" width={50} height={50} />
|
||||
{withText && <span className="text-2xl font-bold ml-2">Zen</span>}
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user