1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-19 12:59:36 +02:00

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

@ -122,5 +122,8 @@
<svelte:head> <svelte:head>
<title>Home | AdventureLog</title> <title>Home | AdventureLog</title>
<meta name="description" content="AdventureLog is a platform to log your adventures." /> <meta
name="description"
content="AdventureLog is a platform to log your adventures and plan your travel."
/>
</svelte:head> </svelte:head>

View file

@ -30,4 +30,8 @@
{/each} {/each}
</tbody> </tbody>
</table> </table>
<!-- </ul> -->
<svelte:head>
<title>My Activities</title>
<meta name="description" content="View my activity types." />
</svelte:head>

View file

@ -340,3 +340,8 @@
</ul> </ul>
</div> </div>
</div> </div>
<svelte:head>
<title>Adventures</title>
<meta name="description" content="View your completed and planned adventures." />
</svelte:head>

View file

@ -303,3 +303,12 @@
</main> </main>
</div> </div>
{/if} {/if}
<svelte:head>
<title
>{data.props.adventure && data.props.adventure.name
? `${data.props.adventure.name}`
: 'Adventure'}</title
>
<meta name="description" content="Explore the world and add countries to your visited list!" />
</svelte:head>

View file

@ -251,3 +251,8 @@
</ul> </ul>
</div> </div>
</div> </div>
<svelte:head>
<title>Collections</title>
<meta name="description" content="View your adventure collections." />
</svelte:head>

View file

@ -616,3 +616,17 @@
</MapLibre> </MapLibre>
{/if} {/if}
{/if} {/if}
<svelte:head>
<title
>{data.props.adventure && data.props.adventure.name
? `${data.props.adventure.name}`
: 'Collection'}</title
>
<meta
name="description"
content="Learn more about {data.props.adventure && data.props.adventure.name
? `${data.props.adventure.name}.`
: 'your adventures.'}"
/>
</svelte:head>

View file

@ -220,6 +220,11 @@
{/each} {/each}
</MapLibre> </MapLibre>
<svelte:head>
<title>Travel Map</title>
<meta name="description" content="View your travels on a map." />
</svelte:head>
<style> <style>
:global(.map) { :global(.map) {
height: 500px; height: 500px;

View file

@ -102,3 +102,8 @@
</div> </div>
</div> </div>
{/if} {/if}
<svelte:head>
<title>Profile | AdventureLog</title>
<meta name="description" content="{data.user.first_name}'s profile on AdventureLog." />
</svelte:head>

View file

@ -210,3 +210,8 @@
{/each} {/each}
</div> </div>
{/if} {/if}
<svelte:head>
<title>Search{query ? `: ${query}` : ''}</title>
<meta name="description" content="Search your adventures." />
</svelte:head>

View file

@ -28,3 +28,8 @@
{/if} {/if}
</form> </form>
</div> </div>
<svelte:head>
<title>Forgot Password</title>
<meta name="description" content="Reset your password for AdventureLog." />
</svelte:head>

View file

@ -56,3 +56,8 @@
</div> </div>
</div> </div>
{/if} {/if}
<svelte:head>
<title>Password Reset Confirm</title>
<meta name="description" content="Confirm your password reset and make a new password." />
</svelte:head>

View file

@ -96,9 +96,6 @@
</div> </div>
<svelte:head> <svelte:head>
<title>Login | AdventureLog</title> <title>Signup</title>
<meta <meta name="description" content="Signup for AdventureLog to explore the world!" />
name="description"
content="Login to your AdventureLog account to start logging your adventures!"
/>
</svelte:head> </svelte:head>

View file

@ -19,6 +19,6 @@
</div> </div>
<svelte:head> <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!" /> <meta name="description" content="Explore the world and add countries to your visited list!" />
</svelte:head> </svelte:head>

View file

@ -41,3 +41,13 @@
/> />
{/each} {/each}
</div> </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>