-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsite.config.ts
More file actions
104 lines (103 loc) · 2.33 KB
/
Copy pathsite.config.ts
File metadata and controls
104 lines (103 loc) · 2.33 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
const siteName = "sondt's Blog"
export const siteConfig = {
siteUrl: process.env.SITE_URL || 'https://blog.nosiaht.com',
name: siteName,
metaDescription: 'A professional blog about software development and technology',
author: {
name: 'nosiaht',
},
nav: {
links: [
{
label: 'Github',
href: 'https://github.com/sondt99/Tech-Blog',
},
{
label: 'About',
href: '/about',
},
{
label: 'Achievement',
href: '/achievement',
},
{
label: 'RSS',
href: '/feed.xml',
},
],
},
home: {
pageTitle: 'Home',
badgeText: 'Security | Systems | Research',
title: `Welcome to ${siteName}`,
subtitle: 'Something about infosec!...',
readMoreLabel: 'Read more',
noDateLabel: 'No date',
featuredAlt: 'Featured image',
},
pagination: {
previousLabel: 'Previous Page',
nextLabel: 'Next Page',
pageLabel: 'Page',
},
post: {
backToHomeLabel: 'Back to home',
statsTitle: 'Article stats',
statsLabels: {
readTime: 'Read time',
words: 'Words',
headings: 'Headings',
codeBlocks: 'Code blocks',
images: 'Images',
minutes: 'min',
},
copyButtonLabel: 'Copy',
copyButtonCopiedLabel: 'Copied!',
copyErrorLabel: 'Failed to copy',
},
toc: {
title: 'Contents',
},
page: {
lastUpdatedLabel: 'Last updated:',
lastUpdatedLocale: 'vi-VN',
},
formatting: {
dateLocale: 'en-EN',
dateOptions: {
year: 'numeric',
month: 'long',
day: 'numeric',
},
numberLocale: 'en-US',
},
footer: {
aboutTitle: `About ${siteName}`,
aboutText:
'Sharing In-Depth Insights About Security, CTF Challenges, and Tech Architecture.',
connectTitle: 'Connect',
social: {
githubUrl: 'https://github.com/sondt99',
xUrl: 'https://x.com/_sondt_',
},
},
openSource: {
enabled: true,
// true is enable status <Vercel>
owner: 'sondt99',
repo: 'Tech-Blog',
branch: 'main',
repoUrl: 'https://github.com/sondt99/Tech-Blog',
labels: {
summaryTitle: 'Open-source',
statusLabel: 'Status',
upToDate: 'Up to date',
outdated: 'Outdated',
unknown: 'Status unknown',
checking: 'Checking updates',
},
},
api: {
helloName: 'sondt',
},
} as const