-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathnext-seo.config.ts
More file actions
25 lines (22 loc) · 731 Bytes
/
next-seo.config.ts
File metadata and controls
25 lines (22 loc) · 731 Bytes
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
import type { DefaultSeoProps } from 'next-seo'
const APP_URL = 'nxt-readme.vercel.app'
const FULL_APP_URL = `https://${APP_URL}/`
const defaultSEO: DefaultSeoProps = {
titleTemplate: `%s | ${APP_URL}`,
defaultTitle: 'Github Readme Generator',
description:
"A fully featured editor with drag and drop interface to create your README's with speed.",
openGraph: {
type: 'website',
locale: 'en_US',
url: FULL_APP_URL,
title: 'Github Readme Generator',
description: `A fully featured editor with drag and drop interface to create your README's with speed.`,
site_name: 'Github Readme Generator',
},
twitter: {
handle: '@NFS__21',
cardType: 'summary',
},
}
export default defaultSEO