-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnext-seo.config.ts
65 lines (63 loc) · 1.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import { DefaultSeoProps } from 'next-seo'
const config: DefaultSeoProps = {
canonical: 'https://kir-dev.hu',
defaultTitle: 'Kir-Dev',
titleTemplate: '%s | Kir-Dev',
languageAlternates: [{ hrefLang: 'hu-HU', href: 'https://kir-dev.hu/' }],
description:
`A Schönherz kollégium webfejlesztő körének, azaz a Kir-Dev kör blog és portfolió weboldala. Olvashatsz körünk ` +
`történetéről, szakmai újdonságokról, tanfolyamainkról és projektjeink haladásáról. Körünk a BME VIK Simonyi Károly ` +
`Szakkollégiumának tagja.`,
additionalMetaTags: [
{
property: 'keywords',
content: [
'web-development',
'software',
'devops',
'rails',
'nodejs',
'spring-boot',
'community',
'simonyi',
'kir-dev',
].join(','),
},
],
additionalLinkTags: [
{
rel: 'icon',
href: '/favicon/favicon-96x96.png',
},
{
rel: 'apple-touch-icon',
href: '/favicon/apple-icon-76x76.png',
sizes: '76x76',
},
{
rel: 'manifest',
href: '/favicon/site.webmanifest',
},
],
openGraph: {
type: 'website',
locale: 'hu_HU',
url: 'https://kir-dev.hu/',
siteName: 'Kir-Dev',
description:
'A Schönherz kollégium webfejlesztő körének, azaz a Kir-Dev kör blog és portfolió weboldala.',
images: [
{
url: '/images/default-og.png',
width: 1200,
height: 630,
alt: 'Kir-Dev',
},
],
},
twitter: {
cardType: 'summary_large_image',
handle: '@kirdev',
},
}
export default config