~repos /only-bible-app

#kotlin#android#ios

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.


780a3376 pyrossh

1 year ago
fix ts complaining
website/src/app.d.ts CHANGED
@@ -1,13 +1,14 @@
1
1
  // See https://kit.svelte.dev/docs/types#app
2
2
  // for information about these interfaces
3
+ import '@poppanator/sveltekit-svg/dist/svg';
3
4
  declare global {
4
- namespace App {
5
+ namespace App {
5
- // interface Error {}
6
+ // interface Error {}
6
- // interface Locals {}
7
+ // interface Locals {}
7
- // interface PageData {}
8
+ // interface PageData {}
8
- // interface PageState {}
9
+ // interface PageState {}
9
- // interface Platform {}
10
+ // interface Platform {}
10
- }
11
+ }
11
12
  }
12
13
 
13
- export {};
14
+ export { };
website/src/routes/+page.svelte CHANGED
@@ -1,6 +1,6 @@
1
1
  <script>
2
- import PlayStoreIcon from '$lib/icons/playstore.svg';
2
+ import PlayStoreIcon from '$lib/icons/playstore.svg?component';
3
- import AppStoreIcon from '$lib/icons/appstore.svg';
3
+ import AppStoreIcon from '$lib/icons/appstore.svg?component';
4
4
  import logoPng from '../../../assets/icon.png';
5
5
  </script>
6
6