-
Notifications
You must be signed in to change notification settings - Fork 107
/
config.ts
189 lines (175 loc) · 4.71 KB
/
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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/* Type Imports - DO NOT TOUCH */
import { Sections } from "./app/App";
import { Link } from "./app/links";
import { Experience } from "./app/experinces";
import { ExtendedProfile, Images } from "./app/profile";
/* Type Imports - DO NOT TOUCH */
/*
Profile and banner are optional! Just replace the file in the public folder if you want it, or delete them from the folder!
- Profile:
- Aspect Ratio: 1/1
- Dimensions: 120 x 120 (it is resized automatically!)
- Banner:
- Aspect Ratio: 7/2
- Dimensions: 455 x 130 (it is resized automatically!)
*/
export const images = {
profilePng: "/profile.png",
bannerPng: "/banner.png",
} as Images;
import { getRandomTheme } from "./color_themes";
export const colors = getRandomTheme();
export const random_theme_button = true;
export const base_profile = {
first_name: "John",
last_name: "Doe",
subtitle: "Aspiring Software Developer",
bio: ["Miami, FL", "Florida International University"],
name() {
return this.first_name + " " + this.last_name;
},
};
export const extended_profile = {
gender: "Male", // You can input any gender
username: "Cobra", // You can opt out my commenting either of these
} as ExtendedProfile;
export const skillsList = [
"Time management",
"Communication",
"Adaptability",
"Problem-solving",
"Teamwork",
"Creativity",
"Leadership",
"Interpersonal skills",
"Work ethic",
"Attention to detail",
"Stress management",
"Organization",
"Prioritizing",
"Planning",
"Goal setting",
"Verbal communication",
"Written communication",
"Presentation",
"Constructive feedback",
"Active listening",
"Self-management",
"Optimism",
"Calmness",
"Analysis",
"Self-motivation",
];
/**
There are no required links, but each link must have:
- url: string;
- title: string;
They can optionally have:
- icon: string;
- content: string;
If no icon is supplied, it will use a chain icon by default
If no content is supplied, it will use the url by default
*/
const projects_linksList = [
{
url: "https://google.com",
title: "Portfolio",
content: "By default, content is the url (view next to continue)",
},
{
url: "https://google.com",
title: "Todo App",
content: "but you can force content by specifying like this!",
},
{
url: "https://google.com",
title: "And more!",
},
] as Link[];
const experiences = [
{
company: "Company X",
meta: [
"Software Engineer Intern",
"Jun 2022 - Aug 2022",
"Space, Space",
],
desc: [
"Did many things to improve the company",
"Hired a private inspector",
"Became superman!",
],
},
{
company: "Company Y",
meta: [
"Software Engineer Intern",
"Jun 2021 - Aug 2021",
"Space, Space",
],
desc: [
"Did many things to improve the company",
"Hired a private inspector",
"Became superman!",
],
},
] as Experience[];
const games_linksList = [
{
url: "https://google.com",
title: "Game 1",
},
{
url: "https://google.com",
title: "Game 2",
content: "But I have more!",
},
] as Link[];
const contactMe_linksList = [
{
url: "https://www.linkedin.com/in/",
icon: "/icons/linkedin.svg",
title: "LinkedIn",
},
{
url: "https://github.com/",
icon: "/icons/github.svg",
title: "GitHub",
},
{
url: "mailto: [email protected]",
title: "Email",
icon: "/icons/email.svg",
content: "[email protected]",
},
] as Link[];
/**
You can customize the order here (if you only want one section, the dropdown will go away and format nicely)
*/
export const sections = {
// An example of a button. This button is a resume download
Resume: {
url: "/Resume.docx",
download_name: `${base_profile.name()}_Resume.pdf`,
},
// An example of a list of projects, that is opened on load
Projects: {
links: projects_linksList,
default_opened: true,
},
// An example of an experience section
"Work Experience": {
experiences: experiences,
},
Games: {
links: games_linksList,
},
"Contact Me": {
links: contactMe_linksList,
},
} as Sections;
export const webpage_config = {
title: `${base_profile.name()}'s |attach|`,
desc: `An |attach| for ${base_profile.name()}`,
keywords: `New Grad, Portfolio, Projects, Developer, Coder, Programmer, Programming, Languages, Software, ${base_profile.name()}`,
};