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

feat: add descriptions to increase SEO score #7

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
10 changes: 6 additions & 4 deletions src/lib/components/sections/Downloads.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,14 @@
<DualHeader title="downloads">
{#snippet subtitle()}
<p>
Choose the correct download for your platform. Installation guides can be found <a
Choose the correct download for your platform. For details, see <a
href="https://docs.ankiweb.net/getting-started.html#installing--upgrading"
aria-label="Anki Manual: Installing and Upgrading"
class="text-primary hover:opacity-80"
target="_blank"
rel="noopener noreferrer"
>
here
installation guides
</a>
</p>
{/snippet}
Expand All @@ -92,13 +93,14 @@
<Dropdown {options} bind:selected={qt_version} />
</div>
<p class="text-lg md:text-2xl text-neutral">
Qt6 is recommended for most users, the reasoning can be found <a
Qt6 is recommended for most users, here are the <a
href="https://docs.ankiweb.net/platform/windows/installing.html#qt5-vs-qt6"
aria-label="Anki Manual: Installing and Upgrading Anki on Windows"
class="text-primary hover:opacity-80"
target="_blank"
rel="noopener noreferrer"
>
here
reasons
Comment on lines 95 to +103
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These will be removed after #8 has been merged. (I will resolve the merge conflict there.)

</a>
</p>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/lib/components/sections/Hero.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
</div>
<a
href="https://docs.ankiweb.net/background.html"
aria-label="Anki Manual: Background"
target="_blank"
rel="noopener noreferrer"
class="aspect-[16/5] w-40 md:w-56 px-3 lg:px-8 text-white border-2 border-white/[13%] flex justify-center items-center text-xl md:text-2xl font-bold hover:opacity-60 transition-all duration-200"
Expand Down
4 changes: 4 additions & 0 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
<svelte:head>
<title>Anki - powerful, intelligent flashcards</title>
<link rel="icon" href="/logo.svg" />
<meta
name="description"
content="Anki - a program which makes remembering things easy."
/>
</svelte:head>

<Navigation />
Expand Down