-
Notifications
You must be signed in to change notification settings - Fork 5
/
next-seo.config.ts
51 lines (51 loc) · 1.11 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
export const nextSeoConfig = {
title: "Home",
titleTemplate: "%s - Project Hackathon",
description:
"An open-source hackathon management built with Next.js & CockroachDB",
defaultTitle: "project hackathon",
additionalLinkTags: [
{
rel: "icon",
href: "/images/phck.svg",
},
{
rel: "apple-touch-icon",
href: "/images/apple-touch-icon-180x180.png",
sizes: "180x180",
},
{
rel: "apple-touch-icon",
href: "/images/apple-touch-icon-152x152.png",
sizes: "152x152",
},
{
rel: "apple-touch-icon",
href: "/images/apple-touch-icon-114x114.png",
sizes: "114x114",
},
{
rel: "manifest",
href: "/manifest.json",
},
],
openGraph: {
site_name: "Project Hackathon",
url: "https://phck.vercel.app",
type: "website",
locale: "en_IE",
images: [
{
url: "/images/og_image.jpg",
width: 1920,
height: 1080,
type: "image/jpg",
},
],
},
twitter: {
handle: "@pheralb_",
site: "https://phck.vercel.app",
cardType: "summary_large_image",
},
};