-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy paththeme.config.tsx
54 lines (52 loc) · 1.39 KB
/
theme.config.tsx
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
import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";
const config: DocsThemeConfig = {
logo: <span>Austria Expat Tips</span>,
project: {
link: "https://github.com/brunojppb/austria-expat-tips",
},
docsRepositoryBase: "https://github.com/brunojppb/austria-expat-tips/tree/master",
footer: {
text: "Austria Expact Tips",
},
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Austria Expat Tips" />
<meta
property="og:description"
content="Tips for expats living in Austria"
/>
<link rel="icon" type="image/png" href="/favicon.png" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png"
/>
</>
),
useNextSeoProps: () => {
return {
title: "Austria Expat Tips",
description: "Tips for expats living in Austria",
openGraph: {
description: "Tips for expats living in Austria",
url: "https://austria-expat-tips.pages.dev/",
siteName: "Austria Expat Tips",
images: [
{
url: "https://austria-expat-tips.pages.dev/cover.jpg",
},
],
},
};
},
};
export default config;