From 0207aefb933dc85d706a84438e61c39b48068090 Mon Sep 17 00:00:00 2001 From: Jory Irving Date: Wed, 27 May 2026 10:14:54 -0600 Subject: [PATCH] fix: replace next/image with plain img for logo to suppress runtime warning The next/image component logs 'The requested resource isn't a valid image for /images/logo.png received null' at runtime. Since the logo is a static asset served from public/, use a plain tag instead which serves it directly without Next.js image optimization. --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8bf70e9..955509a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,5 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; -import Image from "next/image"; import Link from "next/link"; import "./globals.css"; import { ThemeToggle } from "@/components/theme-toggle"; @@ -47,7 +46,8 @@ export default function RootLayout({
-