-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.js
44 lines (40 loc) · 1.12 KB
/
Config.js
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
const Default = {
background: "#0f1117",
foreground: "#EDF0F2"
}
const Seo = {
siteName: "Luigi Barbato - Software Engineer",
siteDescription: "Experienced Software Engineer specializing in web development, creating innovative solutions and delivering high-quality software",
siteUrl: "https://luigibarbato.digital",
siteTitleTemplate: "Luigi Barbato - Software Engineer | %s",
twitterUsername: "luigibarbato_",
locale: "en_IE"
}
const Sections = [
{
name: "Home",
description: "Welcome to the home page, your gateway to exploring the website.",
url: "/",
colors: ["#83FBFB", "#EA1220", "#0f1117"],
radialBackground: true,
},
{
name: "Work",
description: "Discover my professional journey and the projects I've worked on.",
url: "/Work",
colors: ["#4CBC88", "#A8A4A0", "#4D4845"],
radialBackground: true,
},
{
name: "Loving",
description: "Explore my personal interests and passions.",
url: "/Loving",
colors: ["#e732bd", "#1b00e8", "#1b00e8"],
radialBackground: true,
},
];
export const Config = {
sections: Sections,
default: Default,
seo: Seo
}