-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
441e268
commit 2fdf13d
Showing
16 changed files
with
3,703 additions
and
173 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
1. web | ||
2. manifest | ||
3. service worker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "Quran Application", | ||
"short_name": "Quran", | ||
"theme_color": "#fff", | ||
"background_color": "#fff", | ||
"display": "standalone", | ||
"orientation": "portrait", | ||
"scope": "/", | ||
"start_url": "/?surat=1", | ||
"description": "Quran Reader Application", | ||
"icons": [{ | ||
"src": "src/images/quran512.png", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
},{ | ||
"src": "src/images/quran128.png", | ||
"sizes": "128x128", | ||
"type": "image/png" | ||
},{ | ||
"src": "src/images/quran64.png", | ||
"sizes": "64x64", | ||
"type": "image/png" | ||
},{ | ||
"src": "src/images/quran48.png", | ||
"sizes": "48x48", | ||
"type": "image/png" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Offline Quran Page</title> | ||
</head> | ||
<body> | ||
<b>Please try with stable connection</b> | ||
</body> | ||
</html> |
Oops, something went wrong.