chore: 💨

This commit is contained in:
codytseng
2025-10-11 16:10:25 +08:00
parent 9c71db405a
commit fb5434da91
19 changed files with 44 additions and 36 deletions

View File

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

View File

@@ -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<HTMLDivElement>(null)