From e4145ea3fd54f794e99aa2231805ba4ad4cbd2ea Mon Sep 17 00:00:00 2001 From: kryptomrx Date: Mon, 18 May 2026 16:53:19 +0200 Subject: [PATCH] feat: add favicon (orbital icon with accent nucleus) --- public/favicon.svg | 14 ++++++++++++++ src/app/layout.tsx | 1 + 2 files changed, 15 insertions(+) create mode 100644 public/favicon.svg diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100644 index 0000000..1e83ada --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1,14 @@ + + + + + + + diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f91f26d..5b334db 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -19,6 +19,7 @@ export const metadata: Metadata = { title: "noz studio", description: "Editor für deinen digitalen Garten", manifest: "/manifest.json", + icons: { icon: "/favicon.svg", shortcut: "/favicon.svg" }, appleWebApp: { capable: true, statusBarStyle: "default", title: "noz studio" }, }