mirror of https://github.com/sgoudham/website.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
760 B
XML
28 lines
760 B
XML
import { NextSeo } from "next-seo";
|
|
|
|
export default function SEO() {
|
|
return (
|
|
<NextSeo
|
|
title="Goudham's Website"
|
|
description="Just a silly little guy living in a serious big world."
|
|
canonical="https://goudham.com"
|
|
openGraph={{
|
|
url: 'https://goudham.com',
|
|
title: "Goudham's Website",
|
|
description: "Just a silly little guy living in a serious big world.",
|
|
locale: 'en_GB',
|
|
images: [
|
|
{
|
|
url: 'https://goudham.com/og_banner.jpeg',
|
|
alt: 'Goudham standing in the BBC Scotland Building',
|
|
type: 'image/jpeg',
|
|
},
|
|
],
|
|
}}
|
|
twitter={{
|
|
handle: '@RealGoudham',
|
|
cardType: 'summary_large_image',
|
|
}}
|
|
/>
|
|
)
|
|
} |