Logo Lanfrica

alexgrate/TaxClarity

Domain:

socioeconomic
Creator:
ale
Host:
Tax clarity and compliance assistant for Nigeria's 2026 tax reforms. # TaxClarity NG πŸ‡³πŸ‡¬ A mobile app that helps Nigerians understand and comply with the 2026 tax reforms. --- ## πŸ“± About TaxClarity NG is a personalized tax clarity assistant that: - Explains applicable tax rules in **plain language** - Provides **step-by-step compliance guidance** - Helps users avoid penalties and stay tax compliant ### Target Users - πŸ’Ό Salary Earners - πŸ’» Freelancers & Gig Workers - πŸͺ Small Business Owners --- ## πŸ› οΈ Tech Stack | Layer | Technology | |-------|------------| | **Mobile App** | React Native + Expo SDK 54 | | **Navigation** | Expo Router (file-based) | | **State** | Zustand + AsyncStorage | | **Forms** | React Hook Form | | **Backend** | Django + Django REST Framework | | **Database** | PostgreSQL (prod) / SQLite (dev) | --- ## πŸ“‚ Project Structure ``` TaxClarity/ β”œβ”€β”€ frontend/ # React Native Expo app (frontend branch) β”‚ β”œβ”€β”€ app/ # Screens (expo-router) β”‚ β”‚ β”œβ”€β”€ index.tsx # Landing screen β”‚ β”‚ β”œβ”€β”€ profile-setup.tsx β”‚ β”‚ └── next-steps.tsx β”‚ β”œβ”€β”€ components/ui/ # Reusable UI components β”‚ β”œβ”€β”€ services/ # API client (Axios) β”‚ β”œβ”€β”€ store/ # Zustand state management β”‚ β”œβ”€β”€ constants/ # Theme colors β”‚ └── docs/ # Documentation β”‚ └── backend/ # Django API (main branch) └── taxclarity/ β”œβ”€β”€ App/ # Main application └── taxclarity/ # Project settings ``` --- ## πŸš€ Getting Started ### Prerequisites - Node.js 18+ - Python 3.10+ - Expo Go app on your phone ### Frontend Setup ```bash # Clone the repository git clone github.com cd TaxClarity # Switch to frontend branch git checkout frontend # Install dependencies npm install # Start Expo development server npx expo start ``` Scan the QR code with Expo Go (Android) or Camera app (iOS). ### Backend Setup ```bash # Switch to main branch (from repo root) git checkout main cd backend/taxclarity # Create virtual environment python -m …