feat: branding
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 511 B After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 93 KiB |
@@ -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"
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 405 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 405 KiB |
@@ -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
|
||||
>
|
||||
|
||||