fix color of icon in footer when in light mode (#552)
This commit is contained in:
parent
f4e127f2d4
commit
1b1486ad94
|
|
@ -36,7 +36,13 @@ export function Footer() {
|
|||
{/* Brand Section */}
|
||||
<div className="md:col-span-1 max-w-sm">
|
||||
<div className="flex justify-start items-center gap-2 mb-4">
|
||||
<Image src="/logo.svg" alt="OpenCut" width={24} height={24} />
|
||||
<Image
|
||||
src="/logo.svg"
|
||||
alt="OpenCut"
|
||||
width={24}
|
||||
height={24}
|
||||
className="invert dark:invert-0"
|
||||
/>
|
||||
<span className="font-bold text-lg">OpenCut</span>
|
||||
</div>
|
||||
<p className="text-sm md:text-left text-muted-foreground mb-5">
|
||||
|
|
|
|||
Loading…
Reference in New Issue