mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-18 22:44:26 +01:00
feat: add app icon
This commit is contained in:
@@ -12,8 +12,9 @@
|
||||
<meta property="og:title" content="🐰rabbit" />
|
||||
<meta property="og:description" content="Nostr Client" />
|
||||
<meta property="og:image" content="" />
|
||||
<meta property="og:locale" content="ja_JP">
|
||||
<!-- <link rel="shortcut icon" type="image/png" href="/src/assets/icon.png" /> -->
|
||||
<meta property="og:locale" content="ja_JP" />
|
||||
<link rel="manifest" href="manifest.json" />
|
||||
<link rel="shortcut icon" type="image/png" href="./images/rabbit_dark_256.png" />
|
||||
<title>🐰 Rabbit</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
BIN
public/images/rabbit_app_256.png
Normal file
BIN
public/images/rabbit_app_256.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
BIN
public/images/rabbit_dark_256.png
Normal file
BIN
public/images/rabbit_dark_256.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
BIN
public/images/rabbit_light_256.png
Normal file
BIN
public/images/rabbit_light_256.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
14
public/manifest.json
Normal file
14
public/manifest.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/web-manifest-combined.json",
|
||||
"name": "Rabbit",
|
||||
"short_name": "Rabbit",
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"background_color": "#fff",
|
||||
"description": "A deck style nostr client.",
|
||||
"icons": [{
|
||||
"src": "images/rabbit_app_256.png",
|
||||
"sizes": "256x256",
|
||||
"type": "image/png"
|
||||
}]
|
||||
}
|
||||
@@ -46,8 +46,8 @@ const Hello: Component = () => {
|
||||
return (
|
||||
<div class="mx-auto flex max-w-[640px] flex-col items-center p-4 text-stone-600">
|
||||
<div class="flex flex-col items-center gap-4 rounded bg-white p-4">
|
||||
<div class="text-7xl">🐰</div>
|
||||
<h1 class="text-5xl font-bold text-rose-300">Rabbit</h1>
|
||||
<img src="./images/rabbit_light_256.png" width="96" alt="logo" height="96" />
|
||||
<h1 class="text-5xl font-black text-rose-300">Rabbit</h1>
|
||||
<div>Rabbit is a Web client for Nostr.</div>
|
||||
<p class="text-center">
|
||||
<span class="font-bold text-rose-400">注意: 現在ベータ版です。</span>
|
||||
|
||||
Reference in New Issue
Block a user