Skip to content

Commit

Permalink
style: rebranch with newly designed logo
Browse files Browse the repository at this point in the history
Signed-off-by: Neko Ayaka <neko@ayaka.moe>
  • Loading branch information
nekomeowww committed Mar 4, 2025
1 parent f52b8d8 commit d41d093
Show file tree
Hide file tree
Showing 10 changed files with 135 additions and 9 deletions.
Binary file modified apps/stage-web/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/stage-web/public/favicon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/stage-web/public/favicon.ico
Binary file not shown.
42 changes: 34 additions & 8 deletions apps/stage-web/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions apps/stage-web/public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "MyWebSite",
"short_name": "MySite",
"icons": [
{
"src": "/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
Binary file modified apps/stage-web/public/web-app-manifest-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/stage-web/public/web-app-manifest-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions apps/stage-web/src/assets/logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions apps/stage-web/src/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 12 additions & 1 deletion apps/stage-web/src/components/Layouts/Header.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<script setup lang="ts">
import { useDark } from '@vueuse/core'
import LogoDark from '../../assets/logo-dark.svg'
import Logo from '../../assets/logo.svg'
import DesktopSettings from '../Widgets/DesktopSettings.vue'
const dark = useDark()
</script>

<template>
Expand All @@ -8,7 +14,12 @@ import DesktopSettings from '../Widgets/DesktopSettings.vue'
href="https://github.com/moeru-ai/airi" rel="noreferrer noopener" target="_blank" flex="~ 1" w-full items-center
gap-2 px-2 text-nowrap text-2xl outline-none
>
<div i-solar:cat-outline text="[#ed869d]" />
<template v-if="dark">
<img :src="LogoDark" h-8 w-8>
</template>
<template v-else>
<img :src="Logo" h-8 w-8>
</template>
<div font-cute>
<span>アイリ</span>
</div>
Expand Down

0 comments on commit d41d093

Please sign in to comment.