-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
74 lines (69 loc) · 2.51 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<title>Salah Shuffle - Shuffle Quran Surahs For Each Prayer</title>
<!-- thanks to layl.app for there meta tags barakallah -->
<meta
name="title"
content="Salah Shuffle - Shuffle Quran Surahs for Each Prayer"
/>
<meta
name="description"
content="Salah Shuffle allows you to shuffle Quran Surahs for each one of the five mandatory prayers (Fajr, Dhuhr, Asr, Maghrib, Isha) "
/>
<meta
name="keywords"
content="salah, surah, muslim, islam, prayer, quran, verse, shuffle, shuffle quran surah, islam prayer, prayer times, muslim prayer times, quranic verse, holy islam book, quran shuffle, quran surah, quran prayer, mandatory prayer"
/>
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-16" />
<meta name="language" content="English" />
<meta name="revisit-after" content="5 days" />
<meta name="author" content="Mhd Tarek" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://salahshuffle.vercel.app" />
<meta property="og:title" content="Salah Shuffle" />
<meta
property="og:description"
content="Salah Shuffle - Shuffle Quran Surahs for Each Prayer"
/>
<meta
property="og:image"
content="https://salahshuffle.vercel.app/social-banner.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://salahshuffle.vercel.app" />
<meta property="twitter:title" content="Salah Shuffle" />
<meta
property="twitter:description"
content="Salah Shuffle - Shuffle Quran Surahs for Each Prayer"
/>
<meta
property="twitter:image"
content="https://salahshuffle.vercel.app/social-banner.png"
/>
<link rel="canonical" href="https://salahshuffle.vercel.app" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
<style>
body {
margin: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-image: linear-gradient(
117.98deg,
#2989d0 0%,
#426eed 47.86%,
#896cf1 108.11%
);
color: white;
}
</style>
</html>