forked from joshxfi/track-as-one
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext-seo-config.js
61 lines (59 loc) · 1.42 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
const description =
'A platform that enables students to track homework, activities, etc. together with their friends or classmates. With this platform, you can create rooms, invite your friends, and track tasks collaboratively!';
const imgUrl =
'https://firebasestorage.googleapis.com/v0/b/trackas1.appspot.com/o/seo%2FtrackAsOne_Logo.png?alt=media&token=cddef829-6dc2-4368-a2d8-57db7a974e16';
export default {
title: 'trackAsOne | Task Tracker',
description,
openGraph: {
type: 'website',
url: 'https://trackasone.me',
title: 'trackAsOne | Task Tracker',
description,
images: [
{
url: imgUrl,
width: 800,
height: 600,
alt: 'trackAsOne',
type: 'image/jpeg',
},
{
url: imgUrl,
width: 900,
height: 800,
alt: 'trackAsOne Alt',
type: 'image/jpeg',
},
{
url: imgUrl,
},
],
site_name: 'trackAsOne',
},
twitter: {
cardType: 'summary_large_image',
},
additionalLinkTags: [
{
rel: 'icon',
href: '/favicon.ico',
type: 'image/x-icon',
},
{
rel: 'apple-touch-icon',
href: '/icons/apple-touch-icon.png',
sizes: '180x180',
},
{
rel: 'manifest',
href: '/manifest.json',
},
],
additionalMetaTags: [
{
name: 'viewport',
content: 'initial-scale=1, viewport-fit=cover, user-scalable=no',
},
],
};