heroic-dollar

byOrianna Salameh

Dollar exchange rate to ils from jan 2025 to march 2026

LandingLoginAPI SettingsActivity LogsAdmin PanelDashboardData Input
Landing

Comments (0)

No comments yet. Be the first!

Project Tasks19

#9

Implement Exchange Rate Data API

To Do

As a user, I want to use the backend API for exchange rate data so I can retrieve USD/ILS rates for the period January 2025 to March 2026. Implement FastAPI endpoints: GET /api/rates (with date range, chart type, and pagination filters), POST /api/rates (manual data entry), DELETE /api/rates/{id} (remove data point), GET /api/rates/stats (current, highest, lowest, data point count). Store data in MySQL with Alembic migrations. Include Palestine Standard Time (UTC+2) handling for all timestamps.

AI 80%
Human 20%
High Priority
2.5 days
AI Credits:7
Backend Developer
#1

Implement Theme & Color System

To Do

As a frontend developer, I want to implement the global theme and color system based on the mock-design pages so that all pages use consistent colors, typography, and spacing. Set up CSS variables/tokens for Deep Blue (#003366), Gold (#FFD700), Light Gray (#D3D3D3), and White (#FFFFFF). Apply Inter font family. Remove any scaffold pages not present in the design (welcome page, generic dashboard sub-pages not matching design). This task must be completed before any page implementation begins.

AI 85%
Human 15%
High Priority
1 day
AI Credits:4
Frontend Developer
#12

Implement Activity Logs API

To Do

As an admin, I want to use the backend API for activity logs so I can retrieve, filter, and paginate system and user activity events. Implement FastAPI endpoints: GET /api/admin/logs (with filters: event_type, severity, date_from, date_to, search, page, page_size), GET /api/admin/logs/stats (total events today, active users, API calls 24h, system alerts count). Log all significant actions (login, data input, chart export, API calls, errors) automatically.

Depends on:#9
Waiting for dependencies
AI 78%
Human 22%
Medium Priority
2 days
AI Credits:6
Backend Developer
#4

Build Dashboard Page

To Do

As a user, I want to use the Dashboard page so I can view the USD/ILS exchange rate chart, filter by date range, switch chart types (line, bar, candlestick), and download the chart. Implement all sections based on the Dashboard (v2) JSX design: TopBar, Sidebar, WelcomeBanner, StatsCards (Current Rate, Highest Rate, Lowest Rate, Data Points with sparkline), ChartPanel (interactive chart with tooltip), ChartControls (date range presets + custom range picker, export PNG/PDF), DataInputPanel (accordion form for manual entry + last 5 records table), RecentActivity, and StatusBar. Fully responsive.

Depends on:#1
Waiting for dependencies
AI 88%
Human 12%
High Priority
3 days
AI Credits:9
Frontend Developer
#6

Build Admin Panel Page

To Do

As an admin, I want to use the Admin Panel page so I can view a high-level dashboard of system status, user activity summaries, and navigate to API Settings or Activity Logs. Implement all sections based on the Admin Panel (v2) JSX design: TopBar with breadcrumb, Sidebar (with active Dashboard state), summary metric cards, quick-nav tiles to API Settings and Activity Logs, and StatusBar. Fully responsive.

Depends on:#1
Waiting for dependencies
AI 87%
Human 13%
High Priority
2 days
AI Credits:7
Frontend Developer
#13

Implement API Key Management API

To Do

As an admin, I want to use the backend API for API key management so I can create, revoke, and list API keys for external data source integrations. Implement FastAPI endpoints: GET /api/admin/api-keys, POST /api/admin/api-keys (generate new key), DELETE /api/admin/api-keys/{id} (revoke), PATCH /api/admin/api-keys/{id} (update label/config). Store keys securely with hashing. Include data source configuration endpoints: GET/POST/PATCH /api/admin/data-sources.

Depends on:#9
Waiting for dependencies
AI 78%
Human 22%
Medium Priority
1.5 days
AI Credits:5
Backend Developer
#8

Build API Settings Page

To Do

As an admin, I want to use the API Settings page so I can manage API keys, configure data sources, and set exchange rate data retrieval parameters. Implement all sections based on the API Settings (v2) JSX design: TopBar with breadcrumb, Sidebar (API Settings active state), API key management panel (create/revoke/copy keys), data source configuration form, connection status indicators, and StatusBar. Fully responsive.

Depends on:#1
Waiting for dependencies
AI 85%
Human 15%
High Priority
2 days
AI Credits:7
Frontend Developer
#5

Build Data Input Page

To Do

As a user, I want to use the Data Input page so I can manually enter USD/ILS exchange rate data points and trigger API data fetching. Implement all sections based on the Data Input (v2) JSX design: form with Date (PST default), USD/ILS Rate field, Source/Note field, submit button with validation, and a data table showing previously entered records with delete capability. Include API fetch trigger with status feedback. Fully responsive.

Depends on:#1
Waiting for dependencies
AI 87%
Human 13%
High Priority
2 days
AI Credits:7
Frontend Developer
#7

Build Activity Logs Page

To Do

As an admin, I want to use the Activity Logs page so I can monitor user activity, filter logs by event type and severity, view performance metrics, and export logs. Implement all sections based on the Activity Logs (v2) JSX design: TopBar with breadcrumb, Sidebar (Activity Logs active state), PageHeader with export/refresh actions and category filter pills, PerformanceMetrics (4 stat cards with count-up animation), LogFiltersBar (search, date range, event type dropdown, severity dropdown), ActivityLogTable (sortable columns, expandable rows, mobile card layout), LogPagination, and StatusBar. Fully responsive.

Depends on:#1
Waiting for dependencies
AI 86%
Human 14%
High Priority
2.5 days
AI Credits:8
Frontend Developer
#11

Implement External Rate Fetch API

To Do

As a user, I want to use the backend API for fetching pre-resolved exchange rates so the app can automatically retrieve USD/ILS rate data from an external source. Implement a FastAPI endpoint POST /api/rates/fetch that calls an external currency exchange API, stores the resolved rates for Jan 2025–Mar 2026 in MySQL, and returns a summary of imported records. Include error handling and duplicate prevention.

Depends on:#9
Waiting for dependencies
AI 80%
Human 20%
Medium Priority
1.5 days
AI Credits:6
Backend Developer
#18

Implement Live Rate Ticker API

To Do

As a user, I want to use the backend API for a live USD/ILS rate ticker so the Landing page and Dashboard TopBar can display the current rate with 24h change and last-updated timestamp. Implement GET /api/rates/live returning the most recent rate, delta from previous day (value and percentage), and last updated timestamp in PST. Cache the result for 60 seconds to avoid redundant DB queries.

Depends on:#9
Waiting for dependencies
AI 78%
Human 22%
Medium Priority
1 day
AI Credits:4
Backend Developer
#3

Build Login Page

To Do

As a user, I want to use the Login page so I can sign in to access the dashboard or admin panel. Implement all sections based on the Login (v2) JSX design: NavBar (minimal), LoginSplit (two-panel split — left deep blue decorative panel with animated USD/ILS rate card and trust bullets, right white login form with email/password, show/hide toggle, remember me, forgot password, Google OAuth option), TrustBadges, and Footer. On mobile, left panel collapses to a slim branded header. Connects to auth backend API.

Depends on:#1
Waiting for dependencies
AI 88%
Human 12%
High Priority
1.5 days
AI Credits:6
Frontend Developer
#10

Implement Chart Download API

To Do

As a user, I want to use the backend API for chart downloads so I can export the USD/ILS chart as a PNG image or PDF document. Implement FastAPI endpoints: POST /api/export/png and POST /api/export/pdf accepting chart data and date range parameters. Use server-side rendering or accept client-rendered canvas data. Return file as a downloadable response.

Depends on:#9
Waiting for dependencies
AI 78%
Human 22%
Medium Priority
1.5 days
AI Credits:5
Backend Developer
#2

Build Landing Page

To Do

As a user, I want to use the Landing page so I can view the interactive 3D globe, see USD/ILS highlights, access quick-access shortcuts, and navigate to Login or Dashboard. Implement all sections based on the existing Landing (v2) JSX design: NavBar, HeroGlobe (WebGL/Three.js globe with Palestine-USA arc animation, particle background, animated gold shimmer), LiveRateTicker, KeyFeatures, HowItWorks, QuickAccess, ChartPreview, TrustStats, Testimonials, CallToAction, and Footer. Ensure full responsiveness across mobile, tablet, and desktop. References the Landing (v2) design.

Depends on:#1
Waiting for dependencies
AI 90%
Human 10%
High Priority
3 days
AI Credits:9
Frontend Developer
#16

Connect Activity Logs Page to API

To Do

As an admin, I want the Activity Logs page to be connected to live backend APIs so I can view real-time filtered logs and performance metrics. Wire PerformanceMetrics to GET /api/admin/logs/stats, LogFiltersBar controls to GET /api/admin/logs with filter params, ActivityLogTable to paginated log data, and LogPagination to page controls. Wire the export button to a log export endpoint.

Depends on:#7#12
Waiting for dependencies
AI 80%
Human 20%
Medium Priority
1 day
AI Credits:5
Frontend Developer
#19

Connect Landing Page Live Rate

To Do

As a user, I want the Landing page LiveRateTicker and HeroGlobe tooltip to display real USD/ILS rate data so I can see the current exchange rate on the homepage. Wire the LiveRateTicker marquee to GET /api/rates/live and update the HeroGlobe Palestine tooltip sparkline and rate display with live data. Implement auto-refresh every 60 seconds.

Depends on:#18#2
Waiting for dependencies
AI 82%
Human 18%
Medium Priority
0.5 days
AI Credits:4
Frontend Developer
#17

Connect API Settings Page to API

To Do

As an admin, I want the API Settings page to be connected to live backend APIs so I can create, view, and revoke API keys and manage data source configurations. Wire API key list to GET /api/admin/api-keys, create key form to POST /api/admin/api-keys, revoke action to DELETE /api/admin/api-keys/{id}, and data source config form to GET/POST/PATCH /api/admin/data-sources. Show connection status indicators.

Depends on:#13#8
Waiting for dependencies
AI 80%
Human 20%
Medium Priority
1 day
AI Credits:5
Frontend Developer
#14

Connect Dashboard to Backend APIs

To Do

As a user, I want the Dashboard page to be connected to live backend APIs so I can view real USD/ILS chart data, stats, and perform data operations. Wire StatsCards to GET /api/rates/stats, ChartPanel to GET /api/rates with date/type filters, ChartControls to trigger filtered queries, DataInputPanel to POST /api/rates, and chart download buttons to POST /api/export/png and /api/export/pdf. Implement loading states, error handling, and PST timezone display.

Depends on:#10#4#9#11
Waiting for dependencies
AI 80%
Human 20%
High Priority
2 days
AI Credits:7
Frontend Developer
#15

Connect Data Input Page to API

To Do

As a user, I want the Data Input page to be connected to live backend APIs so I can submit manual exchange rate entries and trigger external data fetches. Wire the manual entry form to POST /api/rates, the API fetch button to POST /api/rates/fetch, and the records table to GET /api/rates with pagination. Show success/error toast notifications and refresh table on submission.

Depends on:#9#5#11
Waiting for dependencies
AI 80%
Human 20%
High Priority
1 day
AI Credits:5
Frontend Developer
Landing design preview
Landing: View Globe
Login: Sign In
Admin Panel: View Dashboard
API Settings: Manage Keys
API Settings: Configure Sources
Activity Logs: Monitor Users
Activity Logs: View Performance