Skip to content

Commit

Permalink
Merge pull request #4 from Rabrennie/page-titles
Browse files Browse the repository at this point in the history
Add missing page titles
  • Loading branch information
Rabrennie committed May 22, 2023
2 parents 85c4da6 + 2c5e4c8 commit 758170e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/routes/invite/[invite]/+page.svelte
Expand Up @@ -7,6 +7,10 @@
export let data: PageData;
</script>

<svelte:head>
<title>sprintna.me - Invite from {data.name}</title>
</svelte:head>

<div class="flex w-full h-screen items-center justify-center">
<Card title={`You have been invited to join "${data.name}"`}>
<div class="pt-4">
Expand Down
4 changes: 4 additions & 0 deletions src/routes/team/[id]/+page.svelte
Expand Up @@ -13,6 +13,10 @@
export let data: PageData;
</script>

<svelte:head>
<title>sprintna.me - {data.team.name}</title>
</svelte:head>

<div class="flex flex-col gap-8 py-8">
<div class="flex justify-between items-center">
<div class="flex gap-4 items-center">
Expand Down
4 changes: 4 additions & 0 deletions src/routes/team/create/+page.svelte
Expand Up @@ -9,6 +9,10 @@
export let form: ActionData;
</script>

<svelte:head>
<title>sprintna.me - Create Team</title>
</svelte:head>

<div class="flex justify-center">
<h1 class="absolute top-0 p-10 text-4xl text-primary-content">sprintna.me</h1>
<div class="w-screen h-screen flex items-center justify-center">
Expand Down

0 comments on commit 758170e

Please sign in to comment.