~repos /only-bible-app
git clone https://pyrossh.dev/repos/only-bible-app.git
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
471cd70a
—
pyrossh 1 year ago
improve web
- website/src/routes/+page.svelte +22 -19
website/src/routes/+page.svelte
CHANGED
|
@@ -98,27 +98,30 @@
|
|
|
98
98
|
<!-- ========== HERO ========== -->
|
|
99
99
|
<div class="flex flex-1 flex-col-reverse sm:flex-row items-center mt-10 sm:mt-0">
|
|
100
100
|
<div class="flex flex-col items-center sm:items-start">
|
|
101
|
-
<div class="hidden sm:block sm:mb-
|
|
101
|
+
<div class="hidden sm:block sm:mb-4">
|
|
102
102
|
<Intro />
|
|
103
103
|
</div>
|
|
104
104
|
<!-- Buttons -->
|
|
105
|
+
<div class="flex flex-col items-center sm:items-start">
|
|
106
|
+
<h3 class="m-0 my-4">Download it now</h3>
|
|
105
|
-
|
|
107
|
+
<div class="flex flex-col sm:flex-row">
|
|
106
|
-
|
|
108
|
+
<a
|
|
107
|
-
|
|
109
|
+
class="mt-4 sm:mt-0 sm:mr-2"
|
|
108
|
-
|
|
110
|
+
href="https://play.google.com/store/apps/details?id=sh.pyros.only_bible_app"
|
|
109
|
-
|
|
111
|
+
rel="noopener noreferrer"
|
|
110
|
-
|
|
112
|
+
target="blank"
|
|
111
|
-
|
|
113
|
+
>
|
|
112
|
-
|
|
114
|
+
<PlayStoreIcon class="w-48 sm:w-44" />
|
|
113
|
-
|
|
115
|
+
</a>
|
|
114
|
-
|
|
116
|
+
<a
|
|
115
|
-
|
|
117
|
+
class="mt-8 sm:mt-0"
|
|
116
|
-
|
|
118
|
+
href="https://apps.apple.com/us/app/only-bible-app/id6467606465?itsct=apps_box_badge&itscg=30200"
|
|
117
|
-
|
|
119
|
+
rel="noopener noreferrer"
|
|
118
|
-
|
|
120
|
+
target="blank"
|
|
119
|
-
|
|
121
|
+
>
|
|
120
|
-
|
|
122
|
+
<AppStoreIcon class="w-48 sm:w-44" />
|
|
121
|
-
|
|
123
|
+
</a>
|
|
124
|
+
</div>
|
|
122
125
|
</div>
|
|
123
126
|
<!-- End Buttons -->
|
|
124
127
|
</div>
|
|
@@ -138,7 +141,7 @@
|
|
|
138
141
|
<!-- ========== END HERO ========== -->
|
|
139
142
|
|
|
140
143
|
<!-- ========== FOOTER ========== -->
|
|
141
|
-
<footer class="text-center py-5
|
|
144
|
+
<footer class="text-center py-5 mt-20">
|
|
142
145
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
143
146
|
<p class="text-sm text-gray-300 dark:text-neutral-400">
|
|
144
147
|
Copyright © 2024 <a
|