diff --git a/public/healthz.json b/public/healthz.json index 6375592..945faf6 100644 --- a/public/healthz.json +++ b/public/healthz.json @@ -2,7 +2,7 @@ "status": "ok", "service": "aitherboard", "version": "0.1.0", - "buildTime": "2026-02-03T07:39:15.977Z", + "buildTime": "2026-02-03T07:57:56.985Z", "gitCommit": "unknown", - "timestamp": 1770104355977 + "timestamp": 1770105476985 } \ No newline at end of file diff --git a/src/app.html b/src/app.html index ec3c623..0126392 100644 --- a/src/app.html +++ b/src/app.html @@ -5,8 +5,8 @@ - - + + Aitherboard - Decentralized Messageboard on Nostr @@ -17,10 +17,10 @@ - + - + @@ -29,10 +29,10 @@ - + - + diff --git a/static/README.md b/static/README.md deleted file mode 100644 index e9c3631..0000000 --- a/static/README.md +++ /dev/null @@ -1,25 +0,0 @@ -# Static Assets - -This directory contains static assets for Aitherboard. - -## Files - -- `favicon.svg` - SVG favicon (works in modern browsers) -- `og-image.svg` - OpenGraph social sharing image (1200x630px) -- `manifest.json` - PWA manifest file - -## Production Notes - -For better compatibility, consider: - -1. **Favicon**: Generate a `.ico` file from `favicon.svg` for older browsers - - Use a tool like [RealFaviconGenerator](https://realfavicongenerator.net/) or ImageMagick - - Add `` to app.html - -2. **OpenGraph Image**: Convert `og-image.svg` to PNG format for better social media compatibility - - Some platforms (Facebook, LinkedIn) prefer PNG over SVG - - Use ImageMagick: `convert og-image.svg -resize 1200x630 og-image.png` - - Update app.html to reference `og-image.png` instead of `og-image.svg` - -3. **Apple Touch Icon**: Generate PNG versions for iOS devices - - Sizes: 180x180, 152x152, 144x144, 120x120, 114x114, 76x76, 72x72, 60x60, 57x57 diff --git a/static/aitherboard-og.jpg b/static/aitherboard-og.jpg deleted file mode 100644 index 9f0b4f8..0000000 Binary files a/static/aitherboard-og.jpg and /dev/null differ diff --git a/static/apple-touch-icon-114x114.png b/static/apple-touch-icon-114x114.png new file mode 100644 index 0000000..6f1756b Binary files /dev/null and b/static/apple-touch-icon-114x114.png differ diff --git a/static/apple-touch-icon-120x120.png b/static/apple-touch-icon-120x120.png new file mode 100644 index 0000000..64405d5 Binary files /dev/null and b/static/apple-touch-icon-120x120.png differ diff --git a/static/apple-touch-icon-144x144.png b/static/apple-touch-icon-144x144.png new file mode 100644 index 0000000..6796324 Binary files /dev/null and b/static/apple-touch-icon-144x144.png differ diff --git a/static/apple-touch-icon-152x152.png b/static/apple-touch-icon-152x152.png new file mode 100644 index 0000000..2a8bc53 Binary files /dev/null and b/static/apple-touch-icon-152x152.png differ diff --git a/static/apple-touch-icon-180x180.png b/static/apple-touch-icon-180x180.png new file mode 100644 index 0000000..1c78d2b Binary files /dev/null and b/static/apple-touch-icon-180x180.png differ diff --git a/static/apple-touch-icon-57x57.png b/static/apple-touch-icon-57x57.png new file mode 100644 index 0000000..a0a6b06 Binary files /dev/null and b/static/apple-touch-icon-57x57.png differ diff --git a/static/apple-touch-icon-60x60.png b/static/apple-touch-icon-60x60.png new file mode 100644 index 0000000..b935d3a Binary files /dev/null and b/static/apple-touch-icon-60x60.png differ diff --git a/static/apple-touch-icon-72x72.png b/static/apple-touch-icon-72x72.png new file mode 100644 index 0000000..40bc1c3 Binary files /dev/null and b/static/apple-touch-icon-72x72.png differ diff --git a/static/apple-touch-icon-76x76.png b/static/apple-touch-icon-76x76.png new file mode 100644 index 0000000..d5b2cb0 Binary files /dev/null and b/static/apple-touch-icon-76x76.png differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..b1103db Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/favicon.svg b/static/favicon.svg deleted file mode 100644 index ade502f..0000000 --- a/static/favicon.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - A - diff --git a/static/og-image.png b/static/og-image.png new file mode 100644 index 0000000..718052d Binary files /dev/null and b/static/og-image.png differ diff --git a/vite.config.ts b/vite.config.ts index 02969cd..fc06df5 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -22,6 +22,7 @@ export default defineConfig({ }, build: { target: 'esnext', - sourcemap: true + sourcemap: true, + manifest: false } });