-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsite.config.ts
53 lines (52 loc) · 1.28 KB
/
site.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
export const config = {
name: "Maximous Black",
description: "I'm a Web Developer who likes building beautiful web interfaces & experiences.",
email: "[email protected]",
username: "maximousblk",
baseUrl: "https://maximousblk.me",
themeColor: "#111827",
repo: {
name: "maximousblk/maximousblk.me",
branch: "main",
},
nav: [
{ name: "Home", emoji: "house", href: "/" },
{ name: "Posts", emoji: "feather", href: "/posts" },
{ name: "Tools", emoji: "hammer_and_wrench", href: "/uses" },
],
footer: {
links: [
{ name: "feed", href: "/feed" },
{ name: "sitemap", href: "/sitemap" },
{ name: "design", href: "/design" },
],
social: [
{
name: "GitHub",
icon: "FiGithub",
href: "https://github.com/maximousblk",
},
{
name: "Figma",
icon: "FiFigma",
href: "https://figma.com/@maximousblk",
},
{
name: "Twitter",
icon: "FiTwitter",
href: "https://twitter.com/maximousblk",
},
{
name: "Telegram",
icon: "FiSend",
href: "https://t.me/maximousblk",
},
{
name: "GMail",
icon: "FiMail",
href: "mailto:[email protected]",
},
],
},
};
export default config;