-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.config.ts
63 lines (55 loc) · 2.41 KB
/
blog.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
import type { BlogConfig } from './types';
import { FaGithub, FaXTwitter, FaInstagram, FaTelegram, FaNoteSticky, FaLaptop } from "react-icons/fa6";
import { FiBook, FiPenTool } from 'react-icons/fi';
const config: BlogConfig = {
title: "Situ Note",
description: "Personal website of situ2001",
author: "situ2001",
email: "[email protected]",
hero: {
greeting: "I am situ2001.",
description: "I am a software developer. In my spare time, I enjoy tinkering with various projects, creating tools and apps for both personal enjoyment and the benefit of the community. I love sharing my insights online and diving deep into anything that truly fascinates me, not just technology.",
contacts: [
{ name: "GitHub", link: "https://github.com/situ2001", icon: FaGithub, },
{ name: "Twitter", link: "https://twitter.com/situ200l", icon: FaXTwitter, },
{ name: "Telegram", link: "https://t.me/situ2001_channel", icon: FaTelegram, },
{ name: "Instagram", link: "https://instagram.com/situ2oo1", icon: FaInstagram, }
]
},
nav: {
items: [
{ name: "Blog", link: "/blog", greeting: "Check my thoughts and ideas." },
{ name: "Friends", link: "/friends", greeting: "You can visit my friends." },
{ name: "RSS", link: "/rss.xml", greeting: "Why not subscribe to my RSS feed?" },
]
},
roles: [
{ title: "Web Dev", at: "TME", icon: FaLaptop },
{ title: "Blogger", icon: FiPenTool },
],
projects: [
// {
// title: "Situ Note",
// description: "My personal website. This is what you are looking at right now.",
// link: "https://situ2001.com",
// tags: ["Astro", "React", "Tailwind CSS"],
// // icon: FiBook,
// featured: true
// }
],
friends: [
{ name: "Airing", link: "https://ursb.me" },
{ name: "EMimTY", link: "https://www.eaimty.com" },
{ name: "Yuzi", link: "https://yuzi.dev" },
{ name: "RH-Xie", link: "https://rhxie.top" },
{ name: "7gugu", link: "https://7gugu.com" },
{ name: "songhn", link: "https://songhn.com" },
{ name: "younggglcy", link: "https://www.younggglcy.com/" },
{ name: "Talaxy", link: "https://www.talaxy.site/" },
{ name: "Lakphy", link: "https://lakphy.me/" },
{ name: 'cos', link: 'https://ysx.cosine.ren/' },
{ name: 'Corey Chiu', link: 'https://coreychiu.com' },
{ name: 'HuanXin', link: 'https://huanxin-chen.github.io/' }
]
}
export default config;