import * as React from 'react'; import { ScrollView } from 'react-native'; import { Card, Title, Paragraph, Text, Dialog} from 'react-native-paper'; const About = () => { return ( Pogdark is a dog park communication application that allows users to inform others when they are on the way or have arrived at a dog park of their choice. How It Works 1. Users select a simple status:{"\n"} {" "}• "On My Way"{"\n"} {" "}• "Arrived"{"\n\n"} 2. The status is instantly sent via a WebSocket broker to other users who are listening.{"\n\n"} 3. Users can click again to cancel their current status, or status messages will automatically expire, ensuring no long-term data retention. Key Features No Tracking, No Storage – The system doesn’t store user data or track locations. {"\n\n"} • Instant Updates – Real-time messaging ensures quick communication. {"\n\n"} • No Links or Logins – Users don’t need to generate links or sign up. Profiles are stored locally, and created on initial use.{"\n\n"} • Ephemeral by Design – Messages exist only for a 30 (On My Way) or 90 (Arrived) minute lifespan. ); }; export default About;