diff --git a/README.md b/README.md
index 8191c1c..07eccc0 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,12 @@
-# sigap-v
+# SIGAP
+SIGAP is a project that consists of a mobile application and a website.
+## Modules
+
+* [**sigap-mobile**](./sigap-mobile/README.md): A mobile application built with Flutter.
+* [**sigap-website**](./sigap-website/README.md): A website built with Next.js.
+
+## Getting Started
+
+To get started with this project, please refer to the README files in each module.
\ No newline at end of file
diff --git a/sigap-mobile/PANIC_BUTTON_IMPROVEMENTS.md b/sigap-mobile/PANIC_BUTTON_IMPROVEMENTS.md
deleted file mode 100644
index 9b6d69a..0000000
--- a/sigap-mobile/PANIC_BUTTON_IMPROVEMENTS.md
+++ /dev/null
@@ -1,114 +0,0 @@
-# Panic Button Feature Improvements
-
-## Overview
-
-Fixed and optimized the panic button feature to properly handle the emergency session flow and user interactions, particularly the "Stop" button functionality.
-
-## Key Improvements Made
-
-### 1. Enhanced Stop Button Functionality
-
-- **Location**: `lib/src/features/panic/presentation/widgets/emergency_view.dart`
-- **Changes**:
- - Added confirmation dialog before stopping emergency session
- - Improved button styling with better visual feedback
- - Added icon and clearer text ("Stop Emergency Session")
- - Increased button size and prominence
-
-### 2. Improved Session Status Indicator
-
-- **Location**: `lib/src/features/panic/presentation/widgets/emergency_view.dart`
-- **Changes**:
- - Enhanced visual design with gradient background
- - Added more informative text layout
- - Clearer instructions for user actions
- - Better responsive design for small screens
-
-### 3. Fixed Session Management Flow
-
-- **Location**: `lib/src/features/panic/presentation/controllers/panic_button_controller.dart`
-- **Changes**:
- - Added `endSessionAndGoToUpdateIncident()` method with proper state management
- - Added `startCooldownAfterIncidentUpdate()` method for post-update cooldown
- - Fixed navigation flow to use proper route constants
- - Improved error handling and user feedback
-
-### 4. Enhanced Incident Update Process
-
-- **Location**: `lib/src/features/panic/presentation/controllers/incident_update_controller.dart`
-- **Changes**:
- - Integration with panic button controller for cooldown management
- - Automatic cooldown start after successful incident update
- - Better success messaging and flow control
-
-### 5. Improved Incident Update Screen UI
-
-- **Location**: `lib/src/features/panic/presentation/screens/incident_update_screen.dart`
-- **Changes**:
- - Added back button confirmation dialog
- - Enhanced header information with clearer instructions
- - Added informational note about cooldown period
- - Better user guidance throughout the process
-
-### 6. Enhanced Panic Button Visual States
-
-- **Location**: `lib/src/features/panic/presentation/widgets/panic_button.dart`
-- **Changes**:
- - Improved session content display with emergency icon
- - Better text hierarchy and visual feedback
- - Enhanced session timer display
-
-## User Flow Improvements
-
-### Before:
-
-1. User activates panic button
-2. Session runs for 60 seconds
-3. Automatic end → cooldown starts immediately
-4. User may miss opportunity to provide details
-
-### After:
-
-1. User activates panic button
-2. Session runs with prominent "Stop" button visible
-3. User can press "Stop" → confirmation dialog
-4. User gets redirected to incident update form
-5. After completing form → cooldown starts
-6. If user goes back without completing → cooldown starts with warning
-
-## Technical Improvements
-
-### Error Handling
-
-- Added proper error handling for missing controllers
-- Graceful degradation when components are not found
-- Better user feedback for error scenarios
-
-### State Management
-
-- Proper cleanup of timers and resources
-- Clear state transitions between session, update, and cooldown phases
-- Synchronized state between related controllers
-
-### Navigation
-
-- Used proper route constants instead of hardcoded strings
-- Implemented proper navigation stack management
-- Added confirmation dialogs for critical actions
-
-## Benefits
-
-1. **Better User Experience**: Clear visual feedback and instructions
-2. **Proper Emergency Flow**: Users are guided to complete incident reports
-3. **Reduced Accidental Usage**: Confirmation dialogs prevent mistakes
-4. **Improved Data Collection**: Users more likely to provide incident details
-5. **System Stability**: Better error handling and state management
-
-## Testing Recommendations
-
-1. Test the complete flow: activate → stop → update → cooldown
-2. Test automatic session timeout behavior
-3. Test back button behavior in incident update screen
-4. Test error scenarios (missing data, network issues)
-5. Test on different screen sizes for responsive design
-6. Test rapid button pressing and edge cases
diff --git a/sigap-mobile/README.md b/sigap-mobile/README.md
index c36a7b1..0bf14ab 100644
--- a/sigap-mobile/README.md
+++ b/sigap-mobile/README.md
@@ -1,16 +1,64 @@
-# sigap
+# SIGAP Mobile App
-A mobile app for SIGAP Jember
+This is the mobile application for SIGAP Jember, built with Flutter.
+
+## Features
+
+* User Authentication (Google Sign-In, Local Auth)
+* Real-time data synchronization with Supabase
+* Location-based services (Mapbox, Geolocator, Geocoding)
+* Face Detection (Google ML Kit)
+* Notifications
+* File and Image Picking
+* Direct Phone Calls
+* UI/UX with various Flutter packages (Lottie, Shimmer, Badges, Carousel Slider, etc.)
+
+## Technologies Used
+
+* **Flutter**: UI toolkit for building natively compiled applications for mobile, web, and desktop from a single codebase.
+* **Supabase**: Open Source Firebase Alternative (Backend as a Service).
+* **Google ML Kit**: For on-device machine learning capabilities, specifically face detection.
+* **Mapbox**: For interactive maps and location services.
## Getting Started
-This project is a starting point for a Flutter application.
+### Prerequisites
-A few resources to get you started if this is your first Flutter project:
+* [Flutter SDK](https://flutter.dev/docs/get-started/install)
+* [Android Studio](https://developer.android.com/studio) or [VS Code](https://code.visualstudio.com/) with Flutter plugin
+* A Supabase project configured with your environment variables.
-- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
-- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
+### Installation
-For help getting started with Flutter development, view the
-[online documentation](https://docs.flutter.dev/), which offers tutorials,
-samples, guidance on mobile development, and a full API reference.
+1. Clone the repository:
+ ```bash
+ git clone https://github.com/your-username/sigap-v.git
+ cd sigap-v/sigap-mobile
+ ```
+2. Install Flutter dependencies:
+ ```bash
+ flutter pub get
+ ```
+3. Create a `.env` file in the `sigap-mobile` directory and add your Supabase credentials:
+ ```
+ SUPABASE_URL=YOUR_SUPABASE_URL
+ SUPABASE_ANON_KEY=YOUR_SUPABASE_ANON_KEY
+ ```
+
+### Running the App
+
+```bash
+flutter run
+```
+
+## Project Structure
+
+```
+lib/
+├── app.dart
+├── main.dart
+├── navigation_menu.dart
+├── splash_screen.dart
+├── src/ # Main application source code
+└── supadart/ # Supabase related code
+```
\ No newline at end of file
diff --git a/sigap-website/README.md b/sigap-website/README.md
index d8fc708..86182a2 100644
--- a/sigap-website/README.md
+++ b/sigap-website/README.md
@@ -1,115 +1,74 @@
-