diff --git a/src/components/LoginDialog/index.tsx b/src/components/LoginDialog/index.tsx index 94ca698..7d87706 100644 --- a/src/components/LoginDialog/index.tsx +++ b/src/components/LoginDialog/index.tsx @@ -1,4 +1,4 @@ -import { Dialog, DialogContent } from '@/components/ui/dialog' +import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from '@/components/ui/dialog' import { Drawer, DrawerContent } from '@/components/ui/drawer' import { useScreenSize } from '@/providers/ScreenSizeProvider' import { Dispatch } from 'react' @@ -28,6 +28,10 @@ export default function LoginDialog({ return ( + + Account Manager + Manage your Nostr account and settings + setOpen(false)} /> diff --git a/src/components/NpubQrCode/index.tsx b/src/components/NpubQrCode/index.tsx index ff7f495..6ae29b2 100644 --- a/src/components/NpubQrCode/index.tsx +++ b/src/components/NpubQrCode/index.tsx @@ -1,4 +1,4 @@ -import { Dialog, DialogContent, DialogTrigger } from '@/components/ui/dialog' +import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger } from '@/components/ui/dialog' import { Drawer, DrawerContent, DrawerTrigger } from '@/components/ui/drawer' import { useScreenSize } from '@/providers/ScreenSizeProvider' import { QrCodeIcon } from 'lucide-react' @@ -50,6 +50,10 @@ export default function NpubQrCode({ pubkey }: { pubkey: string }) { {trigger} e.preventDefault()}> + + Profile QR Code + Share your Nostr profile with a QR code + {content} diff --git a/src/components/PostEditor/index.tsx b/src/components/PostEditor/index.tsx index 8a2a42b..3a27bd9 100644 --- a/src/components/PostEditor/index.tsx +++ b/src/components/PostEditor/index.tsx @@ -2,7 +2,8 @@ import { Dialog, DialogContent, DialogDescription, - DialogHeader + DialogHeader, + DialogTitle } from '@/components/ui/dialog' import { ScrollArea } from '@/components/ui/scroll-area' import { @@ -84,8 +85,9 @@ export default function PostEditor({ >
- - + + Post Editor + Create a new post or reply {content}