diff --git a/src/routes/(app)/+page.svelte b/src/routes/(app)/+page.svelte index aa601de..a4b043d 100755 --- a/src/routes/(app)/+page.svelte +++ b/src/routes/(app)/+page.svelte @@ -2,17 +2,15 @@ import "../../app.postcss"; import { onMount } from "svelte"; import { PUBLIC_BASE_URL } from "$env/static/public"; - import type { company, oilprice } from '$lib/types/types' - import '/static/fonts.css'; + import type { company, oilprice } from "$lib/types/types"; + import "/static/fonts.css"; export let company_data: company; export let oil_price_data: oilprice; - - let price_of_oil: string = ''; - let company_name: string = ''; - let company_phone_number: string = ''; + let price_of_oil: string = ""; + let company_name: string = ""; + let company_phone_number: string = ""; - onMount(async () => { try { const response = await fetch(PUBLIC_BASE_URL + "/info/price/today", { @@ -59,25 +57,30 @@ } }); - - -
-
+
+
Now delivering to Paxton !
+