Compare commits
No commits in common. "616a62d4b582eff6d2125f993d565f52b582f647" and "330d19aa94a79e0678f99e6c722f9ed889c37e29" have entirely different histories.
616a62d4b5
...
330d19aa94
2 changed files with 4 additions and 8 deletions
8
frontend/src/app.d.ts
vendored
8
frontend/src/app.d.ts
vendored
|
@ -15,8 +15,7 @@ declare global {
|
||||||
"icon": "",
|
"icon": "",
|
||||||
"created_at": null,
|
"created_at": null,
|
||||||
"updated_at": null,
|
"updated_at": null,
|
||||||
"deleted_at": null,
|
"deleted_at": null
|
||||||
"color": string
|
|
||||||
}
|
}
|
||||||
interface Sport {
|
interface Sport {
|
||||||
"id": 1,
|
"id": 1,
|
||||||
|
@ -68,8 +67,5 @@ declare global {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
export {
|
export {
|
||||||
Route,
|
Route
|
||||||
Category,
|
|
||||||
Sport,
|
|
||||||
SportDetails
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
// import Splash from '$lib/components/Splash.svelte';
|
// import Splash from '$lib/components/Splash.svelte';
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
let categories: App.Category[] = data.categories;
|
let categories = data.categories;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
<div id="welcome-message">Benvenuti a <span class="bold">Pianello Val Tidone</span></div>
|
<div id="welcome-message">Benvenuti a <span class="bold">Pianello Val Tidone</span></div>
|
||||||
<div id="route-cards">
|
<div id="route-cards">
|
||||||
{#each categories as category}
|
{#each categories as category}
|
||||||
<Path color={category.color} name="{category.name_it}" id={String(category.id)} />
|
<Path color="#de0e1b" name="{category.name_it}" id="{category.id}" />
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
Loading…
Reference in a new issue