SEO Optimization

This commit is contained in:
Sean Morley
2024-08-06 08:50:15 -04:00
parent b6628fe2b3
commit 143f84e910
14 changed files with 80 additions and 8 deletions

View File

@@ -19,6 +19,6 @@
</div>
<svelte:head>
<title>WorldTravel | AdventureLog</title>
<title>Countries | World Travel</title>
<meta name="description" content="Explore the world and add countries to your visited list!" />
</svelte:head>

View File

@@ -41,3 +41,13 @@
/>
{/each}
</div>
<svelte:head>
<title
>{data.props && data.props.country ? `Regions in ${data.props.country.name}` : 'Regions'}</title
>
<meta
name="description"
content="View the regions in countries and mark them visited to track your world travel."
/>
</svelte:head>