Here you can show a snapshot of your skills to show off to employers
25 |{description}
24 |{description}
79 |{description}
41 |{text}
134 |-- {name}
135 |76 | I'm a Victoria based Full Stack Software Engineer, currently working 77 | at Instant Domains helping build a modern, mobile-first, domain 78 | registrar and site builder. 79 |
80 |81 | In my free time time, you can catch me training in Muay Thai, 82 | plucking my banjo, or exploring beautiful{' '} 83 | Vancouver Island. 84 |
85 | > 86 | ), 87 | actions: [ 88 | { 89 | href: '/assets/resume.pdf', 90 | text: 'Resume', 91 | primary: true, 92 | Icon: DownloadIcon, 93 | }, 94 | { 95 | href: `#${SectionId.Contact}`, 96 | text: 'Contact', 97 | primary: false, 98 | }, 99 | ], 100 | }; 101 | 102 | /** 103 | * About section 104 | */ 105 | export const aboutData: About = { 106 | profileImageSrc: profilepic, 107 | description: `Use this bio section as your way of describing yourself and saying what you do, what technologies you like 108 | to use or feel most comfortable with, describing your personality, or whatever else you feel like throwing 109 | in.`, 110 | aboutItems: [ 111 | {label: 'Location', text: 'Victoria, BC', Icon: MapIcon}, 112 | {label: 'Age', text: '29', Icon: CalendarIcon}, 113 | {label: 'Nationality', text: 'Canadian / Irish', Icon: FlagIcon}, 114 | {label: 'Interests', text: 'Motorcycles, Muay Thai, Banjos', Icon: SparklesIcon}, 115 | {label: 'Study', text: 'University of Victoria', Icon: AcademicCapIcon}, 116 | {label: 'Employment', text: 'Instant Domains, inc.', Icon: OfficeBuildingIcon}, 117 | ], 118 | }; 119 | 120 | /** 121 | * Skills section 122 | */ 123 | export const skills: SkillGroup[] = [ 124 | { 125 | name: 'Spoken languages', 126 | skills: [ 127 | { 128 | name: 'English', 129 | level: 10, 130 | }, 131 | { 132 | name: 'French', 133 | level: 4, 134 | }, 135 | { 136 | name: 'Spanish', 137 | level: 3, 138 | }, 139 | ], 140 | }, 141 | { 142 | name: 'Frontend development', 143 | skills: [ 144 | { 145 | name: 'React', 146 | level: 9, 147 | }, 148 | { 149 | name: 'Typescript', 150 | level: 7, 151 | }, 152 | { 153 | name: 'GraphQL', 154 | level: 6, 155 | }, 156 | ], 157 | }, 158 | { 159 | name: 'Backend development', 160 | skills: [ 161 | { 162 | name: 'Node.js', 163 | level: 8, 164 | }, 165 | { 166 | name: 'Rust', 167 | level: 5, 168 | }, 169 | { 170 | name: 'Golang', 171 | level: 4, 172 | }, 173 | ], 174 | }, 175 | { 176 | name: 'Mobile development', 177 | skills: [ 178 | { 179 | name: 'React Native', 180 | level: 9, 181 | }, 182 | { 183 | name: 'Flutter', 184 | level: 4, 185 | }, 186 | { 187 | name: 'Swift', 188 | level: 3, 189 | }, 190 | ], 191 | }, 192 | ]; 193 | 194 | /** 195 | * Portfolio section 196 | */ 197 | export const portfolioItems: PortfolioItem[] = [ 198 | { 199 | title: 'Project title 1', 200 | description: 'Give a short description of your project here.', 201 | url: 'https://timbaker.me', 202 | image: porfolioImage1, 203 | }, 204 | { 205 | title: 'Project title 2', 206 | description: 'Give a short description of your project here.', 207 | url: 'https://timbaker.me', 208 | image: porfolioImage2, 209 | }, 210 | { 211 | title: 'Project title 3', 212 | description: 'Give a short description of your project here.', 213 | url: 'https://timbaker.me', 214 | image: porfolioImage3, 215 | }, 216 | { 217 | title: 'Project title 4', 218 | description: 'Give a short description of your project here.', 219 | url: 'https://timbaker.me', 220 | image: porfolioImage4, 221 | }, 222 | { 223 | title: 'Project title 5', 224 | description: 'Give a short description of your project here.', 225 | url: 'https://timbaker.me', 226 | image: porfolioImage5, 227 | }, 228 | { 229 | title: 'Project title 6', 230 | description: 'Give a short description of your project here.', 231 | url: 'https://timbaker.me', 232 | image: porfolioImage6, 233 | }, 234 | { 235 | title: 'Project title 7', 236 | description: 'Give a short description of your project here.', 237 | url: 'https://timbaker.me', 238 | image: porfolioImage7, 239 | }, 240 | { 241 | title: 'Project title 8', 242 | description: 'Give a short description of your project here.', 243 | url: 'https://timbaker.me', 244 | image: porfolioImage8, 245 | }, 246 | { 247 | title: 'Project title 9', 248 | description: 'Give a short description of your project here.', 249 | url: 'https://timbaker.me', 250 | image: porfolioImage9, 251 | }, 252 | { 253 | title: 'Project title 10', 254 | description: 'Give a short description of your project here.', 255 | url: 'https://timbaker.me', 256 | image: porfolioImage10, 257 | }, 258 | { 259 | title: 'Project title 11', 260 | description: 'Give a short description of your project here.', 261 | url: 'https://timbaker.me', 262 | image: porfolioImage11, 263 | }, 264 | ]; 265 | 266 | /** 267 | * Resume section -- TODO: Standardize resume contact format or offer MDX 268 | */ 269 | export const education: TimelineItem[] = [ 270 | { 271 | date: 'April 2007', 272 | location: 'Clown college', 273 | title: 'Masters in Beer tasting', 274 | content:Describe your experience at school, what you learned, what useful skills you have acquired etc.
, 275 | }, 276 | { 277 | date: 'March 2003', 278 | location: 'School of Business', 279 | title: 'What did you study 101', 280 | content:Describe your experience at school, what you learned, what useful skills you have acquired etc.
, 281 | }, 282 | ]; 283 | 284 | export const experience: TimelineItem[] = [ 285 | { 286 | date: 'March 2010 - Present', 287 | location: 'Awesome Development Company', 288 | title: 'Senior UX Engineer', 289 | content: ( 290 |291 | Describe work, special projects, notable achievements, what technologies you have been working with, and 292 | anything else that would be useful for an employer to know. 293 |
294 | ), 295 | }, 296 | { 297 | date: 'March 2007 - February 2010', 298 | location: 'Garage Startup Studio', 299 | title: 'Junior bug fixer', 300 | content: ( 301 |302 | Describe work, special projects, notable achievements, what technologies you have been working with, and 303 | anything else that would be useful for an employer to know. 304 |
305 | ), 306 | }, 307 | ]; 308 | 309 | /** 310 | * Testimonial section 311 | */ 312 | export const testimonial: TestimonialSection = { 313 | imageSrc: testimonialImage, 314 | testimonials: [ 315 | { 316 | name: 'John Doe', 317 | text: 'Use this as an opportunity to promote what it is like to work with you. High value testimonials include ones from current or past co-workers, managers, or from happy clients.', 318 | image: 'https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/169.jpg', 319 | }, 320 | { 321 | name: 'Jane Doe', 322 | text: 'Here you should write some nice things that someone has said about you. Encourage them to be specific and include important details (notes about a project you were on together, impressive quality produced, etc).', 323 | image: 'https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/14.jpg', 324 | }, 325 | { 326 | name: 'Someone else', 327 | text: 'Add several of these, and keep them as fresh as possible, but be sure to focus on quality testimonials with strong highlights of your skills/work ethic.', 328 | image: 'https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/69.jpg', 329 | }, 330 | ], 331 | }; 332 | 333 | /** 334 | * Contact section 335 | */ 336 | 337 | export const contact: ContactSection = { 338 | headerText: 'Get in touch.', 339 | description: 'Here is a good spot for a message to your readers to let them know how best to reach out to you.', 340 | items: [ 341 | { 342 | type: ContactType.Email, 343 | text: 'reachout@timbaker.me', 344 | href: 'mailto:reachout@timbaker.me', 345 | }, 346 | { 347 | type: ContactType.Location, 348 | text: 'Victoria BC, Canada', 349 | href: 'https://www.google.ca/maps/place/Victoria,+BC/@48.4262362,-123.376775,14z', 350 | }, 351 | { 352 | type: ContactType.Instagram, 353 | text: '@tbakerx', 354 | href: 'https://www.instagram.com/tbakerx/', 355 | }, 356 | { 357 | type: ContactType.Github, 358 | text: 'tbakerx', 359 | href: 'https://github.com/tbakerx', 360 | }, 361 | ], 362 | }; 363 | 364 | /** 365 | * Social items 366 | */ 367 | export const socialLinks: Social[] = [ 368 | {label: 'Github', Icon: GithubIcon, href: 'https://github.com/tbakerx'}, 369 | {label: 'Stack Overflow', Icon: StackOverflowIcon, href: 'https://stackoverflow.com/users/8553186/tim-baker'}, 370 | {label: 'LinkedIn', Icon: LinkedInIcon, href: 'https://www.linkedin.com/in/timbakerx/'}, 371 | {label: 'Instagram', Icon: InstagramIcon, href: 'https://www.instagram.com/tbakerx/'}, 372 | {label: 'Twitter', Icon: TwitterIcon, href: 'https://twitter.com/TimBakerx'}, 373 | ]; 374 | --------------------------------------------------------------------------------