Skip to content

Commit

Permalink
fix: add keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
artgpz committed Sep 2, 2024
1 parent 3fcf521 commit fccc9e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
let page_title = genTitle(['Welcome'])
let page_url = 'https://etips.org.uk'
let page_description = `eTIPS is an early therapy approach in perinatal stroke, supporting parents to encourage their baby's movements from an early age and within the first 6 months of life. The materials on this website were developed and used in a pilot feasibility study. The paper summarising this study is available open access at Feasibility trial of an early therapy in perinatal stroke (eTIPS) | BMC Neurology | Full Text (biomedcentral.com).`
let page_keywords = `perinatal stroke, therapy, baby therapy, baby support, medical research, research, Newcastle, Newcastle University, medical advice, health, medicine`
</script>

<svelte:head>
Expand All @@ -36,6 +37,7 @@
],
site_name: page_title
}}
keywords={page_keywords}
></SvelteSeo>
<div class="content-container overflow-y-scroll">
{#if data.page.cards}
Expand Down
2 changes: 2 additions & 0 deletions src/routes/[slug]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
$: page_title = genTitle([$page.params.slug])
$: page_description = genDescription(data.page.cards)
$: page_url = `https://etips.org.uk/${$page.params.slug}`
let page_keywords = `perinatal stroke, therapy, baby therapy, baby support, medical research, research, Newcastle, Newcastle University, medical advice, health, medicine`
</script>

<svelte:head>
Expand All @@ -36,6 +37,7 @@
],
site_name: page_title
}}
keywords={page_keywords}
></SvelteSeo>
<div class="content-container w-screen overflow-x-hidden lg:w-full">
{#if data.page.cards}
Expand Down

0 comments on commit fccc9e6

Please sign in to comment.