From 9952cc6ecea10363381fcccc70ea0d2fb6f1bea8 Mon Sep 17 00:00:00 2001 From: Lacy Morrow Date: Tue, 14 Jul 2026 18:01:36 -0400 Subject: [PATCH] fix(seo): serve apple-touch-icon.png from public/ (LAC-2795) The head links /apple-touch-icon.png (src/config/metadata.ts), but the file lived in src/app/ under a name Next.js App Router does not auto-serve (convention is apple-icon.png), so https://bones.sh/apple-touch-icon.png returned 404. Move the existing 180x180 PNG to public/ so it is served at the referenced path. Co-Authored-By: Paperclip --- {src/app => public}/apple-touch-icon.png | Bin 1 file changed, 0 insertions(+), 0 deletions(-) rename {src/app => public}/apple-touch-icon.png (100%) diff --git a/src/app/apple-touch-icon.png b/public/apple-touch-icon.png similarity index 100% rename from src/app/apple-touch-icon.png rename to public/apple-touch-icon.png