feat: add favicon (orbital icon with accent nucleus)

This commit is contained in:
kryptomrx 2026-05-18 16:53:19 +02:00
parent b01e39de0e
commit e4145ea3fd
2 changed files with 15 additions and 0 deletions

14
public/favicon.svg Normal file
View file

@ -0,0 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="none">
<style>
.nucleus { fill: oklch(38% 0.16 253); }
.orbit { stroke: oklch(14.5% 0.013 58); }
@media (prefers-color-scheme: dark) {
.nucleus { fill: oklch(77% 0.13 253); }
.orbit { stroke: oklch(87% 0.055 258); }
}
</style>
<!-- Nucleus — accent color marks the studio -->
<circle class="nucleus" cx="16" cy="16" r="2.75"/>
<!-- Orbital ring, tilted 35° -->
<ellipse class="orbit" cx="16" cy="16" rx="12.5" ry="5" stroke-width="1.75" transform="rotate(-35 16 16)"/>
</svg>

After

Width:  |  Height:  |  Size: 589 B

View file

@ -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" },
}