Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing titles and descriptions to the Sverdle pages #7351

Merged
merged 3 commits into from
Oct 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/polite-trainers-share.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'create-svelte': patch
---

Add missing titles and descriptions to the Sverdle pages
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@

<svelte:window on:keydown={keydown} />

<svelte:head>
<title>Sverdle</title>
<meta name="description" content="A Wordle clone written in SvelteKit" />
</svelte:head>

<form
method="POST"
action="?/enter"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<svelte:head>
<title>How to play Sverdle</title>
<meta name="description" content="How to play Sverdle" />
</svelte:head>

<div class="text-column">
<h1>How to play Sverdle</h1>

Expand Down