-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext-seo.config.ts
30 lines (28 loc) · 1.04 KB
/
next-seo.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { NextSeoProps } from 'next-seo'
const SEO: NextSeoProps = {
titleTemplate: 'PokeSmash | %s',
defaultTitle: 'PokeSmash',
title: 'Pokémon Smash or Pass',
description: `A simple concept, really. Smash or Pass has been instilled in society since the rise of dating apps (and possibly longer). Recently, however, YouTube personality Markiplier started a trend applying the simplicity of Smash or Pass to the vast complexity of Pokémon.
This website is a means of making that trend have more mainstream accessibility.
Even if you have done a Pokémon Smash or Pass, this site will show you how far off the average your opinion is and more!`,
openGraph: {
type: 'website',
locale: 'en_US',
url: 'https://pokesmash.xyz/',
images: [
{
url: 'https://pokesmash.xyz/meta.png',
width: 1200,
height: 628,
alt: 'PokeSmash Pokemon Smash or Pass',
},
],
},
twitter: {
handle: '@devJimmyboy',
site: '@devJimmyboy',
cardType: 'summary_large_image',
},
}
export default SEO