Skip to content

Commit

Permalink
update app page
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrossh committed Jul 26, 2024
1 parent 4713342 commit 105f23f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
Binary file added src/lib/assets/images/app_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/lib/assets/images/app_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/lib/assets/images/dark.png
Binary file not shown.
Binary file removed src/lib/assets/images/light.png
Binary file not shown.
9 changes: 6 additions & 3 deletions src/lib/components/Intro.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
The only bible app you will ever need
</h1>
<div class="text-center sm:text-left flex flex-col text-lg sm:mt-5">
<span>No ads,</span>
<span>No in-app purchases,</span>
<span>No distractions.</span>
<p>No ads</p>
<p>No in-app purchases</p>
<p>No distractions</p>
<p>Offline First</p>
<p>Optimized reading</p>
<p>Online Audio Playback</p>
</div>
10 changes: 5 additions & 5 deletions src/routes/only-bible-app/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<script>
import PlayStoreIcon from '$lib/assets/icons/playstore.svg?component';
import AppStoreIcon from '$lib/assets/icons/appstore.svg?component';
import lightPng from '$lib/assets/images/light.png?enhanced';
import logoPng from '$lib/assets/logos/onlybible.png';
import AppIconPng from '$lib/assets/images/app_icon.png';
import AppImagePng from '$lib/assets/images/app_image.png?enhanced';
import Intro from '$lib/components/Intro.svelte';
</script>

Expand All @@ -13,8 +13,8 @@

<div class="flex flex-col mx-4">
<div class="flex flex-1 flex-col sm:flex-row items-center sm:items-start">
<div class="flex flex-col items-center sm:items-start sm:mt-10">
<img class="mr-2 w-40 m-0 rounded-xl" src={logoPng} alt="Only Bible App" />
<div class="flex flex-col items-center sm:items-start">
<img class="mr-2 w-40 m-0 rounded-xl" src={AppIconPng} alt="Only Bible App" />
<div
class="flex flex-1 items-center text-5xl font-semibold no-underline focus:outline-none focus:ring-1 focus:ring-gray-600"
aria-label="Brand"
Expand Down Expand Up @@ -49,7 +49,7 @@
<div
class="not-prose flex items-center sm:flex-row [&>picture]:flex [&>picture]:justify-center sm:[&>picture]:justify-end mt-10 sm:mt-0"
>
<enhanced:img class="w-6/12" src={lightPng} alt="app screenshot" />
<enhanced:img class="w-6/12" src={AppImagePng} alt="app screenshot" />
</div>
</div>
</div>

0 comments on commit 105f23f

Please sign in to comment.