-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy paththeme.config.jsx
60 lines (59 loc) · 1.62 KB
/
theme.config.jsx
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
const themeConfig = {
docsRepositoryBase: 'https://github.com/leandroercoli/SaasterKit',
logo: (
<>
<img
src="/favicon.ico"
style={{
width: '24px',
height: '24px',
borderRadius: '8px',
marginRight: '8px',
}}
alt="favicon"
/>
<span>SaasterKit</span>
</>
),
project: {
link: 'https://github.com/leandroercoli/SaasterKit',
},
editLink: {
component: null,
},
head: (
<>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta property="og:title" content="SaasterKit" />
<meta
property="og:description"
content="A Next.js Boilerplate Kit for SaaS apps"
/>
<meta
name="keywords"
content="nextjs, saas, boilerplate, kit, starter, template, prisma, postgresql, supabase, clerk, resend, shadcn, tailwindcss, typescript"
/>
<meta name="author" content="Leandro Ercoli" />
</>
),
footer: {
text: (
<span>
Leandro Ercoli {new Date().getFullYear()} ©{' '}
<a href="#" target="_blank">
SaasterKit
</a>
.
</span>
),
},
useNextSeoProps() {
return {
titleTemplate: '%s – SaasterKit',
};
},
};
export default themeConfig;