-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext-seo.config.js
31 lines (31 loc) · 991 Bytes
/
next-seo.config.js
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
/** @type {import('next-seo').DefaultSeoProps} */
// seo setup
export default {
defaultTitle: 'A Bit of Personal Space - an exploration.',
titleTemplate: '%s - a bit of personal space',
description: 'An exporation into the spaces and places that make us us.',
canonical: 'https://abitofpersonal.space',
additionalMetaTags: [
{
property: 'author',
content: 'Evan Kirkiles',
},
{
property: 'language',
content: 'en-us',
},
{
property: 'keywords',
content:
'art, artist, painting, paper, papercraft, papercrafting, scissors, cut, glue, fold, visuals, graphic design, blender, 3d, 2d, concept, sculpture, game, video, videogame',
},
],
openGraph: {
type: 'website',
locale: 'en',
url: 'https://abitofpersonal.space',
title: 'A Bit of Personal Space - an exploration.',
description: 'an exporation into the spaces and places that make us us.',
site_name: 'A Bit of Personal Space',
},
};