diff options
Diffstat (limited to 'examples/blog/src/components/MainHead.astro')
-rw-r--r-- | examples/blog/src/components/MainHead.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/blog/src/components/MainHead.astro b/examples/blog/src/components/MainHead.astro index 86f750ddc..dfc47fc01 100644 --- a/examples/blog/src/components/MainHead.astro +++ b/examples/blog/src/components/MainHead.astro @@ -23,8 +23,8 @@ export let canonicalURL: string | undefined; <!-- SEO --> <link rel="canonical" href={canonicalURL}> -{next && <link rel="next" href={new URL(next, canonicalURL).href}>} -{prev && <link rel="prev" href={new URL(prev, canonicalURL).href}>} +{next && <link rel="next" aria-label="Previous Page" href={new URL(next, canonicalURL).href}>} +{prev && <link rel="prev" aria-label="Next Page" href={new URL(prev, canonicalURL).href}>} <!-- OpenGraph --> <meta property="og:title" content={title}> |