import { View } from "react-native"; import { ScreenWrapper } from "@/components/ScreenWrapper"; import { StandardHeader } from "@/components/StandardHeader"; import { Text } from "@/components/ui/text"; import { Card, CardContent } from "@/components/ui/card"; const FAQ = [ { q: "How do I change the theme?", a: "Go to Profile > Appearance and choose Light, Dark, or System.", }, { q: "Where can I find my invoices and proformas?", a: "Use the tabs on the bottom navigation to browse Invoices/Payments and Proformas.", }, { q: "Why am I seeing an API error?", a: "If your backend is rate-limiting or the database schema is missing columns, the app may show errors. Contact your admin or check the server logs.", }, ]; export default function HelpScreen() { return ( FAQ Quick answers to common questions. {FAQ.map((item) => ( {item.q} {item.a} ))} Need more help? Placeholder — add contact info (email/phone/WhatsApp) or a support chat link here. ); }