├── public
├── _redirects
├── favicon.ico
└── image
│ ├── allah.webp
│ ├── quran.webp
│ ├── hadits.webp
│ ├── lighter.webp
│ ├── muhammad.webp
│ ├── muslim.webp
│ ├── prayer.webp
│ ├── praying.webp
│ └── tasbih.webp
├── src
├── playground.js
├── style.css
├── main.js
├── components
│ ├── home
│ │ ├── Footer.vue
│ │ ├── CardMenu.vue
│ │ ├── Main.vue
│ │ ├── Header.vue
│ │ └── PrayerSchedule.vue
│ ├── reusable
│ │ ├── DefaultContainer.vue
│ │ ├── NotFoundComponent.vue
│ │ ├── ScrollOnTop.vue
│ │ ├── HeaderPage.vue
│ │ └── Accordion.vue
│ └── quran
│ │ ├── TafsirSurah.vue
│ │ ├── ListCardSurah.vue
│ │ └── ListCardAyat.vue
├── pages
│ ├── Home.vue
│ ├── NotFound.vue
│ ├── Quran.vue
│ ├── DailyPrayer.vue
│ ├── TahlilReading.vue
│ ├── Bookmark.vue
│ ├── TheHadith.vue
│ ├── DetailSurah.vue
│ └── TheHadithDetail.vue
├── App.vue
├── router
│ └── index.js
└── assets
│ └── search-not-found.svg
├── .vscode
└── extensions.json
├── postcss.config.js
├── vite.config.js
├── index.html
├── tailwind.config.js
├── .gitignore
├── package.json
└── README.md
/public/_redirects:
--------------------------------------------------------------------------------
1 | /* /index.html 200
--------------------------------------------------------------------------------
/src/playground.js:
--------------------------------------------------------------------------------
1 | // abu-dawud => Abu Dawud
2 |
--------------------------------------------------------------------------------
/src/style.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sastra12/islamic-app/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/image/allah.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sastra12/islamic-app/HEAD/public/image/allah.webp
--------------------------------------------------------------------------------
/public/image/quran.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sastra12/islamic-app/HEAD/public/image/quran.webp
--------------------------------------------------------------------------------
/public/image/hadits.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sastra12/islamic-app/HEAD/public/image/hadits.webp
--------------------------------------------------------------------------------
/public/image/lighter.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sastra12/islamic-app/HEAD/public/image/lighter.webp
--------------------------------------------------------------------------------
/public/image/muhammad.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sastra12/islamic-app/HEAD/public/image/muhammad.webp
--------------------------------------------------------------------------------
/public/image/muslim.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sastra12/islamic-app/HEAD/public/image/muslim.webp
--------------------------------------------------------------------------------
/public/image/prayer.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sastra12/islamic-app/HEAD/public/image/prayer.webp
--------------------------------------------------------------------------------
/public/image/praying.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sastra12/islamic-app/HEAD/public/image/praying.webp
--------------------------------------------------------------------------------
/public/image/tasbih.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sastra12/islamic-app/HEAD/public/image/tasbih.webp
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
3 | }
4 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/src/main.js:
--------------------------------------------------------------------------------
1 | import { createApp } from 'vue'
2 | import App from './App.vue'
3 |
4 | import router from "./router/index"
5 |
6 | import "./style.css"
7 |
8 | const app = createApp(App)
9 |
10 | app.use(router)
11 | app.mount('#app')
12 |
--------------------------------------------------------------------------------
/src/components/home/Footer.vue:
--------------------------------------------------------------------------------
1 |
2 | © 2023. All rights reserved
{{ selectedProp.data.title }}
6 |7 | {{ selectedProp.data.arabic }} 8 |
9 | 25 | 26 |
30 |
Bookmark
7 |
19 | Al Quran
20 |
30 | Hadis
31 |
41 | Doa Harian
42 |
52 | Bacaan Tahlil
53 |16 | Ayat ke {{ bookmarkdata.ayat }} 17 |
18 |21 | {{ bookmarkdata.namasuratarab }} 22 |
23 |Islamic App
7 |
8 | 44 | Lebih Seru dan Mudah Dengan 45 | Islamic App 46 |
47 | Akses Dengan Mudah Kapanpun Dan Dimanapun 50 |57 | Barang siapa membaca satu huruf dari kitab Allah, maka dibalas satu 58 | kebaikan dan satu kebaikan dilipat gandakan menjadi sepuluh. 59 | (H.R.At-Tirmidzi) 62 |
63 |32 | {{ tafsir.teks }} 33 |
34 |Total: {{ hadith.total }}
41 |58 | {{ convertToTypeSurah(surah.tempatTurun) }}, 59 | {{ surah.jumlahAyat }} Ayat 60 |
61 |{{ surah.nama }}
64 |30 | {{ detailsurah.namaLatin }} - {{ detailsurah.jumlahAyat }} Ayat 31 |
32 | 33 |{{ ayat.teksArab }}
33 |{{ ayat.teksIndonesia }}
36 | 37 | 38 |{{ hadith.number }}
41 |{{ hadith.arab }}
45 |48 | {{ hadith.id }} 49 |
50 |57 | Halaman ke {{ page }} 58 |
59 |69 | {{ lokasi.lokasi }} 70 |
71 |Imsak
83 |{{ jadwalSholat.jadwal.imsak }}
84 |Subuh
89 |{{ jadwalSholat.jadwal.subuh }}
90 |Terbit
95 |{{ jadwalSholat.jadwal.terbit }}
96 |Dhuha
101 |{{ jadwalSholat.jadwal.dhuha }}
102 |Dhuhur
107 |{{ jadwalSholat.jadwal.dzuhur }}
108 |Ashar
113 |{{ jadwalSholat.jadwal.ashar }}
114 |Magrib
119 |120 | {{ jadwalSholat.jadwal.maghrib }} 121 |
122 |Isya
127 |{{ jadwalSholat.jadwal.isya }}
128 |