diff --git a/README.md b/README.md index f8ddac6..30d12c1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@
- - Jumble Logo

logo designed by Daniel David

@@ -9,23 +7,9 @@ # Jumble -A user-friendly Nostr client focused on relay feed browsing and relay discovery +A user-friendly Nostr client for exploring relay feeds -## Features - -- **Relay Feeds:** Explore content directly through relays without following specific users -- **Relay-Friendly Design:** Minimized and simplified requests ensure efficient communication with relays -- **Relay Sets:** Easily manage and switch between relay sets -- **Clean Interface:** Enjoy a minimalist design and intuitive interactions - -## Screenshots - -Jumble Screenshot 01 -
- Jumble Screenshot 02 - Jumble Screenshot 03 - Jumble Screenshot 04 -
+Experience Jumble at [https://jumble.social](https://jumble.social) ## Run Locally @@ -68,11 +52,9 @@ After finishing, access: http://localhost:8089 If you like this project, you can buy me a coffee :) -lightning: ⚡️ codytseng@getalby.com ⚡️ - -bitcoin: bc1qx8kvutghdhejx7vuvatmvw2ghypdungu0qm7ds - -geyser: https://geyser.fund/project/jumble +- **Lightning:** ⚡️ codytseng@getalby.com ⚡️ +- **Bitcoin:** bc1qwp2uqjd2dy32qfe39kehnlgx3hyey0h502fvht +- **Geyser:** https://geyser.fund/project/jumble ## License diff --git a/index.html b/index.html index 2873956..6fb3469 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,7 @@ Jumble + + + + + + + + diff --git a/resources/icon-rounded.svg b/resources/icon-rounded.svg new file mode 100644 index 0000000..0cb187d --- /dev/null +++ b/resources/icon-rounded.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/icon.svg b/resources/icon.svg new file mode 100644 index 0000000..8f20e6a --- /dev/null +++ b/resources/icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/resources/og-image.png b/resources/og-image.png index cbda624..9600d2c 100644 Binary files a/resources/og-image.png and b/resources/og-image.png differ diff --git a/screenshots/01.png b/screenshots/01.png deleted file mode 100644 index 5ee9d9c..0000000 Binary files a/screenshots/01.png and /dev/null differ diff --git a/screenshots/02.png b/screenshots/02.png deleted file mode 100644 index f005f8b..0000000 Binary files a/screenshots/02.png and /dev/null differ diff --git a/screenshots/03.png b/screenshots/03.png deleted file mode 100644 index 9cdeaa5..0000000 Binary files a/screenshots/03.png and /dev/null differ diff --git a/screenshots/04.png b/screenshots/04.png deleted file mode 100644 index b0ea9a7..0000000 Binary files a/screenshots/04.png and /dev/null differ diff --git a/src/assets/favicon.svg b/src/assets/favicon.svg new file mode 100644 index 0000000..0cb187d --- /dev/null +++ b/src/assets/favicon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/AboutInfoDialog/index.tsx b/src/components/AboutInfoDialog/index.tsx index 950a06c..69e4e59 100644 --- a/src/components/AboutInfoDialog/index.tsx +++ b/src/components/AboutInfoDialog/index.tsx @@ -13,7 +13,7 @@ export default function AboutInfoDialog({ children }: { children: React.ReactNod <>
Jumble
- A user-friendly Nostr client focused on relay feed browsing and relay discovery + A user-friendly Nostr client for exploring relay feeds
Made by diff --git a/src/components/QrCode/index.tsx b/src/components/QrCode/index.tsx index 2f2e33e..a5821d6 100644 --- a/src/components/QrCode/index.tsx +++ b/src/components/QrCode/index.tsx @@ -1,6 +1,6 @@ import QRCodeStyling from 'qr-code-styling' import { useEffect, useRef } from 'react' -import iconSvg from '../../../public/favicon.svg' +import iconSvg from '../../assets/favicon.svg' export default function QrCode({ value, size = 180 }: { value: string; size?: number }) { const ref = useRef(null) diff --git a/vite.config.ts b/vite.config.ts index 2c2b52d..5e5ace2 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -51,6 +51,12 @@ export default defineConfig({ name: 'Jumble', short_name: 'Jumble', icons: [ + { + src: '/pwa-512x512.png', + sizes: '512x512', + type: 'image/png', + purpose: 'any' + }, { src: '/pwa-192x192.png', sizes: '192x192', @@ -61,27 +67,26 @@ export default defineConfig({ src: '/pwa-512x512.png', sizes: '512x512', type: 'image/png', - purpose: 'any' + purpose: 'maskable' }, { - src: '/pwa-maskable-192x192.png', + src: '/pwa-192x192.png', sizes: '192x192', type: 'image/png', purpose: 'maskable' }, { - src: '/pwa-maskable-512x512.png', + src: '/pwa-monochrome.svg', sizes: '512x512', - type: 'image/png', - purpose: 'maskable' + type: 'image/svg+xml', + purpose: 'monochrome' } ], start_url: '/', display: 'standalone', background_color: '#FFFFFF', theme_color: '#FFFFFF', - description: - 'A user-friendly Nostr client focused on relay feed browsing and relay discovery' + description: packageJson.description } }) ]