feat: branding

This commit is contained in:
2025-09-25 21:45:08 +02:00
parent e27b1121c7
commit e03ac6e39f
9 changed files with 22 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 511 B

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 93 KiB

View File

@@ -1,6 +1,6 @@
{
"name": "astro-erudite",
"short_name": "astro-erudite",
"name": "MyWebSite",
"short_name": "MySite",
"icons": [
{
"src": "/web-app-manifest-192x192.png",
@@ -16,6 +16,6 @@
}
],
"theme_color": "#ffffff",
"background_color": "#000000",
"background_color": "#ffffff",
"display": "standalone"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 405 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 405 KiB

View File

@@ -4,7 +4,7 @@ import ThemeToggle from '@/components/ThemeToggle.astro'
import MobileMenu from '@/components/ui/mobile-menu'
import { NAV_LINKS, SITE } from '@/consts'
import { Image } from 'astro:assets'
import logo from '../../public/static/logo.svg'
import logo from '../../public/static/logo.png'
---
<header transition:persist>
@@ -12,7 +12,7 @@ import logo from '../../public/static/logo.svg'
class="mx-auto flex max-w-3xl items-center justify-between gap-4 px-4 py-3"
>
<Link href="/" class="flex shrink-0 items-center justify-center gap-3">
<Image src={logo} alt="Logo" class="size-5 sm:size-6" />
<Image src={logo} alt="Logo" class="size-5 sm:size-6 rounded-full" />
<span class="hidden h-full text-lg font-medium min-[300px]:block"
>{SITE.title}</span
>