Browse Source

chore: update description

imwald
codytseng 11 months ago
parent
commit
27ae980f42
  1. 2
      README.md
  2. 4
      index.html
  3. 2
      package.json
  4. 2
      src/components/AboutInfoDialog/index.tsx
  5. 3
      vite.config.ts

2
README.md

@ -9,7 +9,7 @@
# Jumble # Jumble
A beautiful nostr client focused on browsing relay feeds A user-friendly Nostr client focused on relay feed browsing and relay discovery
## Features ## Features

4
index.html

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title>Jumble</title> <title>Jumble</title>
<meta name="description" content="A beautiful nostr client focused on browsing relay feeds" /> <meta name="description" content="A user-friendly Nostr client focused on relay feed browsing and relay discovery" />
<meta <meta
name="keywords" name="keywords"
content="jumble, nostr, web, client, relay, feed, social, pwa, simple, clean" content="jumble, nostr, web, client, relay, feed, social, pwa, simple, clean"
@ -23,7 +23,7 @@
<meta property="og:title" content="Jumble" /> <meta property="og:title" content="Jumble" />
<meta <meta
property="og:description" property="og:description"
content="A beautiful nostr client focused on browsing relay feeds" content="A user-friendly Nostr client focused on relay feed browsing and relay discovery"
/> />
<meta <meta
property="og:image" property="og:image"

2
package.json

@ -1,7 +1,7 @@
{ {
"name": "jumble", "name": "jumble",
"version": "0.1.0", "version": "0.1.0",
"description": "A beautiful nostr client focused on browsing relay feeds", "description": "A user-friendly Nostr client focused on relay feed browsing and relay discovery",
"private": true, "private": true,
"type": "module", "type": "module",
"author": "codytseng", "author": "codytseng",

2
src/components/AboutInfoDialog/index.tsx

@ -13,7 +13,7 @@ export default function AboutInfoDialog({ children }: { children: React.ReactNod
<> <>
<div className="text-xl font-semibold">Jumble</div> <div className="text-xl font-semibold">Jumble</div>
<div className="text-muted-foreground"> <div className="text-muted-foreground">
A beautiful nostr client focused on browsing relay feeds A user-friendly Nostr client focused on relay feed browsing and relay discovery
</div> </div>
<div> <div>
Made by <Username userId={CODY_PUBKEY} className="inline-block text-primary" showAt /> Made by <Username userId={CODY_PUBKEY} className="inline-block text-primary" showAt />

3
vite.config.ts

@ -61,7 +61,8 @@ export default defineConfig({
display: 'standalone', display: 'standalone',
background_color: '#FFFFFF', background_color: '#FFFFFF',
theme_color: '#FFFFFF', theme_color: '#FFFFFF',
description: 'A beautiful nostr client focused on browsing relay feeds' description:
'A user-friendly Nostr client focused on relay feed browsing and relay discovery'
} }
}) })
] ]

Loading…
Cancel
Save