Skeleton: Add page titles
All checks were successful
Build Formula11 Docker Image / pocketbase-docker (push) Successful in 26s

This commit is contained in:
2025-02-05 22:33:07 +01:00
parent 5f43c9ac52
commit 685a30b9a9
11 changed files with 41 additions and 3 deletions

View File

@ -81,6 +81,10 @@
]);
</script>
<svelte:head>
<title>Formula 11 - Race Results</title>
</svelte:head>
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={result_handler} shadow>
<span class="font-bold">Create Race Result</span>

View File

@ -51,6 +51,10 @@
]);
</script>
<svelte:head>
<title>Formula 11 - Drivers</title>
</svelte:head>
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={driver_handler} shadow>
<span class="font-bold">Create New Driver</span>

View File

@ -57,6 +57,10 @@
]);
</script>
<svelte:head>
<title>Formula 11 - Races</title>
</svelte:head>
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={race_handler} shadow>
<span class="font-bold">Create New Race</span>

View File

@ -59,6 +59,10 @@
]);
</script>
<svelte:head>
<title>Formula 11 - Substitutions</title>
</svelte:head>
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={substitution_handler} shadow>
<span class="font-bold">Create New Substitution</span>

View File

@ -42,6 +42,10 @@
]);
</script>
<svelte:head>
<title>Formula 11 - Teams</title>
</svelte:head>
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={team_handler} shadow>
<span class="font-bold">Create New Team</span>

View File

@ -38,4 +38,8 @@
};
</script>
<svelte:head>
<title>Formula 11 - Users</title>
</svelte:head>
<Table data={data.users} columns={users_columns} handler={users_handler} />

View File

@ -1 +1,3 @@
<h1>Leaderboard</h1>
<svelte:head>
<title>Formula 11 - Leaderboard</title>
</svelte:head>

View File

@ -74,6 +74,10 @@
};
</script>
<svelte:head>
<title>Formula 11 - Race Picks</title>
</svelte:head>
{#if data.currentrace}
<Accordion class="card mx-auto bg-surface-500 shadow" regionPanel="pt-0" width="w-full">
<AccordionItem>

View File

@ -2,6 +2,10 @@
import { Card } from "$lib/components";
</script>
<svelte:head>
<title>Formula 11 - Rules</title>
</svelte:head>
<div class="grid grid-cols-1 gap-2 xl:grid-cols-4">
<Card>
<h1 class="text-lg font-bold">Format</h1>

View File

@ -1 +1,3 @@
<h1>Season Picks</h1>
<svelte:head>
<title>Formula 11 - Season Picks</title>
</svelte:head>

View File

@ -1 +1,3 @@
<h1>Statistics</h1>
<svelte:head>
<title>Formula 11 - Statistics</title>
</svelte:head>