-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnext-seo.ts
55 lines (53 loc) · 1.05 KB
/
next-seo.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import type { DefaultSeoProps } from 'next-seo';
const config: DefaultSeoProps = {
openGraph: {
type: 'website',
locale: 'en_IN',
url: 'https://athing.vercel.app/',
siteName: 'A Thing',
},
twitter: {
site: '@is_it_ayush',
cardType: 'summary_large_image',
},
description: 'A Thing is a place to write.',
titleTemplate: '%s | A Thing',
defaultTitle: '<3',
themeColor: '#000000',
additionalLinkTags: [
{
rel: 'icon',
href: '/favicon.ico',
},
{
rel: 'icon',
href: '/favicon-16x16.png',
sizes: '16x16',
},
{
rel: 'icon',
href: '/favicon-32x32.png',
sizes: '32x32',
},
{
rel: 'icon',
href: '/android-chrome-192x192.png',
sizes: '192x192',
},
{
rel: 'icon',
href: '/android-chrome-512x512.png',
sizes: '512x512',
},
{
rel: 'manifest',
href: '/manifest.json',
},
{
rel: 'apple-touch-icon',
href: '/apple-touch-icon.png',
sizes: '180x180',
},
],
};
export default config;