aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2024-01-23 22:27:07 -0500
committerSebastien Castiel <sebastien@castiel.me>2024-01-23 22:27:07 -0500
commit2f58e466da05a058096a2bdc7ee581dbebe7a508 (patch)
tree8cd9706d280ae344806e04c48150d0b64326d334
parent89ee5ae247d0319bbb14710e6d191a93df196ed0 (diff)
Fix image size to prevent warning in the console
-rw-r--r--src/app/layout.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 53b45b2..f8bff4c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -80,7 +80,7 @@ export default function RootLayout({
<h1>
<Image
src="/logo-with-text.png"
- className="m-1 h-auto"
+ className="m-1 h-auto w-auto"
width={(35 * 522) / 180}
height={35}
alt="Spliit"
@@ -113,7 +113,7 @@ export default function RootLayout({
<Link className="flex items-center gap-2" href="/">
<Image
src="/logo-with-text.png"
- className="m-1 h-auto"
+ className="m-1 h-auto w-auto"
width={(35 * 522) / 180}
height={35}
alt="Spliit"