-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.ts
More file actions
43 lines (37 loc) · 1.3 KB
/
data.ts
File metadata and controls
43 lines (37 loc) · 1.3 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
const data = {
ogImage: "/banner.png", // string or []
baseURL: "charfolio-xi.vercel.app",
about: {
name: "CharFolio",
avatar: "/images/avatar.jpg",
description: "A developer with an eye for detail and a passion for performance. CharFolio believes that great technology is both beautiful and functional. Currently creating immersive digital experiences.",
birthday: "1945-08-17"
},
social: [
{
name: "Email",
icon: "mdi:email",
url: "mailto:hello@charisprod.xyz"
},
{
name: "GitHub",
icon: "ri:github-fill",
url: "https://github.com/charisprod"
}
],
blog: {
title: "Blog & Writings",
description: "Thoughts, notes, and experiences I have shared. This is where I write about things I learn, build, and explore."
},
project: {
title: "Projects & Creations",
description: "A collection of projects I have worked on, including experiments, tools, and things I built to solve problems or learn something new.",
github: "charisprod",
topic: "projects"
},
timeline: {
title: "Timeline & Career Journey",
description: "Explore my life journey and career milestones, from childhood to the present. Discover the moments, achievements, and experiences that shaped who I am today."
},
};
export { data };