Mianhassam96
WaqtX
JavaScript

WaqtX is a modern web app that transforms your life timeline into meaningful insights by combining personal time data, Islamic history, and daily reflection tools. It goes beyond simple age calculation by visualizing your journey, highlighting spiritual milestones, and encouraging mindful use of time through habit tracking and actionable insights.

Last updated Jul 3, 2026
23
Stars
1
Forks
0
Issues
0
Stars/day
Attention Score
29
Language breakdown
JavaScript 50.9%
CSS 28.5%
HTML 20.6%
โ–ธ Files click to expand
README

โœฆ WaqtX โ€” Your Time is a Trust

"By time โ€” indeed, mankind is in loss. Except for those who have believed and done righteous deeds."
โ€” Quran 103:1-

A Muslim personal growth dashboard built with vanilla HTML, CSS, and JavaScript. No frameworks. No backend. 100% private โ€” everything lives on your device.

๐Ÿ”— Live: mianhassam96.github.io/WaqtX ๐Ÿ“ฆ Repo: github.com/Mianhassam96/WaqtX


Pages

| Page | Description | |------|-------------| | index.html | Home โ€” hero, prayer rhythm, Today's Guidance, Journey Snapshot, This Day in Islam | | prayers.html | Prayer orbit, schedule, weekly tracker, consistency scores, post-prayer reflection | | journey.html | Islamic milestones, counters (Ramadans, Jumu'ahs, Laylat al-Qadr), Life Remaining, Time Capsule | | reflection.html | Daily verse, Daily Muhasabah (3 nightly questions), gratitude journal, personal notes | | profile.html | Spiritual Growth Dashboard, statistics, achievements | | calendar.html | Hijri / Gregorian calendar | | qibla.html | Qibla compass (device geolocation) | | settings.html | Prayer method, theme, language, location, notifications, accessibility | | stories.html | Stories of Prophets, Companions, Women โ€” with emotional "When You Feelโ€ฆ" entry | | privacy.html | Privacy policy |


Features

๐Ÿ  Home

  • Premium hero: "Your time is a trust. See how you are spending it."
  • DOB input โ†’ reveals personal Islamic dashboard (Ramadans, Hajj seasons, Hijri birthday, world events at birth)
  • Prayer Rhythm โ€” live timeline + today's prayer status cards
  • Today's Guidance โ€” Ayah of the Day + Dua of the Day + One Action Today (merged, single premium section)
  • Journey Snapshot โ€” streak, journal days, Ramadans witnessed, next Jumu'ah
  • This Day in Islam โ€” daily hadith/wakeup system

๐Ÿ•Œ Prayers

  • SVG Prayer Orbit โ€” unique visual showing all 6 prayer times on a radial arc
  • Weekly prayer tracker (tap to mark)
  • Salah Consistency scores โ€” weekly % + monthly % with colour-coded bars
  • After Prayer Reflection โ€” one optional note per prayer per day
  • Prayer notifications (Adhan / Reminder / Silent)

๐ŸŒ™ Journey (My Amanah)

  • Islamic Journey Milestones โ€” replaces generic life stages with spiritually meaningful markers
  • Extended counters: Ramadans, Eids, Jumu'ahs, Laylat al-Qadr opportunities, fasting days, prayer moments
  • Life Remaining โ€” reflection-focused ring showing % of journey with estimated remaining Ramadans/Jumu'ahs
  • Islamic Time Capsule โ€” downloadable/shareable card

๐Ÿช” Reflection

  • Daily verse with Quran audio playback
  • Daily Muhasabah โ€” 3 nightly questions (gratitude / mistake to correct / good deed), saved per day
  • Reflection streak tracker
  • Gratitude journal (3 blessings daily)
  • Personal notes (persistent)

๐Ÿ‘ค Profile

  • Spiritual Growth Dashboard โ€” 4 consistency scores: Prayer, Muhasabah, Gratitude, Journey Completion
  • Statistics โ€” prayers logged, muhasabah days, gratitude days, streak, next Jumu'ah
  • Achievements โ€” 8 unlockable badges

๐Ÿ“– Stories

  • Stories of Prophets, Companions, Women of Islam, Hard Moments
  • When You Feelโ€ฆ โ€” 10 emotional entry points (Lost, Alone, Guilty, Angry, Afraid, Heartbroken, Overwhelmed, Grieving, Misunderstood, Unmotivated) โ†’ each recommends a relevant story
  • Full story modal: The Moment โ†’ What Happened โ†’ The Decision โ†’ Your Reflection โ†’ One Action Today
  • Search by name or feeling

โš™๏ธ Settings

  • Prayer calculation method (7 methods)
  • Theme: Dark / Light / Ramadan / Friday (auto Ramadan detection)
  • Language: English / ุงุฑุฏูˆ / ุงู„ุนุฑุจูŠุฉ / Roman Urdu
  • Location: auto GPS or manual city lookup
  • Prayer notifications, font size, high contrast
  • Clear all data

Tech Stack

  • Vanilla HTML / CSS / JavaScript โ€” zero dependencies, no build step
  • localStorage โ€” all data stored privately on device, namespaced waqtx_*
  • AlAdhan API โ€” prayer times (free, no key required)
  • Kuwaiti algorithm โ€” built-in Hijri date conversion (accurate ยฑ1 day)
  • PWA โ€” installable, service worker, offline support
  • 4 languages โ€” runtime JSON-based i18n
  • 4 themes โ€” CSS variable switching

Project Structure

WaqtX/
โ”œโ”€โ”€ index.html          # Home
โ”œโ”€โ”€ prayers.html        # Prayers
โ”œโ”€โ”€ journey.html        # Journey
โ”œโ”€โ”€ reflection.html     # Reflection
โ”œโ”€โ”€ profile.html        # Profile
โ”œโ”€โ”€ calendar.html       # Calendar
โ”œโ”€โ”€ qibla.html          # Qibla
โ”œโ”€โ”€ settings.html       # Settings
โ”œโ”€โ”€ stories.html        # Stories
โ”œโ”€โ”€ privacy.html        # Privacy
โ”œโ”€โ”€ app.js              # Home page logic (DOB calculator, tracker, share)
โ”œโ”€โ”€ daily-islam.js      # Ayah / Dua / Action daily content
โ”œโ”€โ”€ stories-data.js     # All story content
โ”œโ”€โ”€ stories.js          # Stories page logic
โ”œโ”€โ”€ style.css           # Global styles + themes + variables
โ”œโ”€โ”€ style-pages.css     # Sub-page styles
โ”œโ”€โ”€ manifest.json       # PWA manifest
โ”œโ”€โ”€ sw.js               # Service worker
โ”œโ”€โ”€ favicon.svg         # Favicon
โ”œโ”€โ”€ lang/               # Translation files (en, ur, ar, roman)
โ””โ”€โ”€ js/
    โ”œโ”€โ”€ core.js         # Shared: theme, lang, nav, Hijri, prayer helpers
    โ”œโ”€โ”€ prayers.js      # Prayers page
    โ”œโ”€โ”€ journey.js      # Journey page
    โ”œโ”€โ”€ reflection.js   # Reflection page
    โ”œโ”€โ”€ profile.js      # Profile page
    โ”œโ”€โ”€ settings.js     # Settings page
    โ””โ”€โ”€ calendar.js     # Calendar page

Privacy

All data is stored exclusively in your browser's localStorage. Nothing is sent to any server. No accounts, no tracking, no ads.


License

MIT ยฉ 2026 MultiMian

๐Ÿ”— More in this category

ยฉ 2026 GitRepoTrend ยท Mianhassam96/WaqtX ยท Updated daily from GitHub