-
Notifications
You must be signed in to change notification settings - Fork 1
/
next-seo.config.ts
33 lines (31 loc) · 1.02 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
31
32
33
import { DefaultSeoProps } from 'next-seo';
const config: DefaultSeoProps = {
title: 'Play Guess the Rank for Your Favorite Games',
titleTemplate: '%s | RankGuess',
description:
'RankGuess is a rank guessing game where you can test your knowledge of user-submitted gameplay from CS:GO, Overwatch, League of Legends, Apex Legends and more.',
openGraph: {
type: 'website',
locale: 'en_IE',
url: 'https://www.rankguess.com/',
siteName: 'RankGuess',
title: 'Play Guess the Rank for Your Favorite Games',
description:
'RankGuess is a rank guessing game where you can test your knowledge of user-submitted gameplay from CS:GO, Overwatch, League of Legends, Apex Legends and more.',
images: [
{
url: 'https://www.rankguess.com/og.png',
width: 1200,
height: 600,
alt: 'Home page',
type: 'image/png',
},
],
},
twitter: {
handle: '@LucasJWinkler',
site: '@LucasJWinkler',
cardType: 'summary_large_image',
},
};
export default config;