switch to link component and fix seo canonical
This commit is contained in:
@ -31,7 +31,7 @@ const BlogSeo = ({ title, summary, date, url, image }) => {
|
||||
datePublished={publishedAt}
|
||||
description={summary}
|
||||
images={[featuredImage]}
|
||||
publisherLogo="/static/favicons/android-chrome-192x192.png"
|
||||
publisherLogo="/static/favicons/android-chrome-96x96.png"
|
||||
publisherName={siteMetadata.author}
|
||||
title={title}
|
||||
url={url}
|
||||
|
@ -21,9 +21,8 @@ const MobileNav = () => {
|
||||
<div className="sm:hidden">
|
||||
<button
|
||||
type="button"
|
||||
className="rounded ml-1 mr-1 h-8 w-8 focus:outline-none"
|
||||
className="rounded ml-1 mr-1 h-8 w-8"
|
||||
aria-label="Toggle Menu"
|
||||
aria-hidden={!navShow}
|
||||
onClick={onToggleNav}
|
||||
>
|
||||
<svg
|
||||
@ -54,6 +53,7 @@ const MobileNav = () => {
|
||||
>
|
||||
<button
|
||||
type="button"
|
||||
aria-label="toggle modal"
|
||||
className="w-full h-full fixed cursor-auto focus:outline-none"
|
||||
onClick={onToggleNav}
|
||||
></button>
|
||||
|
@ -3,7 +3,6 @@ import siteMetadata from '@/data/siteMetadata'
|
||||
const SEO = {
|
||||
title: siteMetadata.title,
|
||||
description: siteMetadata.description,
|
||||
canonical: siteMetadata.siteUrl,
|
||||
openGraph: {
|
||||
type: 'website',
|
||||
locale: siteMetadata.language,
|
||||
|
Reference in New Issue
Block a user