import { Dialog, DialogContent, DialogTrigger } from '@/components/ui/dialog' import { useScreenSize } from '@/providers/ScreenSizeProvider' import { Drawer, DrawerContent, DrawerTrigger } from '../ui/drawer' import Username from '../Username' export default function AboutInfoDialog({ children }: { children: React.ReactNode }) { const { isSmallScreen } = useScreenSize() const content = ( <>
Jumble
A beautiful nostr client focused on browsing relay feeds
Made by{' '}
Source code:{' '} GitHub
If you like this project, you can buy me a coffee ☕️
⚡️ codytseng@getalby.com ⚡️
Version: v{__APP_VERSION__} ({__GIT_COMMIT__})
) if (isSmallScreen) { return ( {children}
{content}
) } return ( {children} {content} ) }