|
| 1 | +import React from "react"; |
| 2 | +import Link from "gatsby-link"; |
| 3 | + |
| 4 | +export const STATS_COUNTER_DURATION = 3; |
| 5 | + |
| 6 | +export const STATS_LIST = [ |
| 7 | + { |
| 8 | + name: 'Trips Around The Sun', |
| 9 | + start: 0, |
| 10 | + end: 18, |
| 11 | + }, |
| 12 | + { |
| 13 | + name: 'Hours Spent Coding', |
| 14 | + start: 0, |
| 15 | + end: 2899, |
| 16 | + }, |
| 17 | + { |
| 18 | + name: 'Soccer Balls Kicked', |
| 19 | + start: 0, |
| 20 | + end: 972, |
| 21 | + }, |
| 22 | + { |
| 23 | + name: 'Unpronouncable Last Name', |
| 24 | + start: 0, |
| 25 | + end: 1, |
| 26 | + } |
| 27 | +]; |
| 28 | + |
| 29 | +export const DESC_PARAGRAPHS = [ |
| 30 | + <span> |
| 31 | + I'm a diehard soccer fan, whether it's watching FC Barcelona - my favourite team - or getting on the field myself. Apart from soccer and coding, my other interests are <s>nonexistent</s> fitness, cooking, my husky-malamute Storm, and travelling. I've done a couple of solo trips that you can read about on <Link to="/blog">my blog</Link>! |
| 32 | + </span>, |
| 33 | + <span> |
| 34 | + As a member of the Item Data Platform team at Flipp, I'm working with some other awesome peeps on the system responsible for indexing retailer products to power the results on Flipp's flyers and search results. Even though almost all of the work I'm doing at Flipp is on the back-end, I'm extremely interested in the workings of the entire web stack. Stemming from the fact that I'm a very visual learner, I have a deep fascination with user interfaces and UX design. I absolutely love trawling the web for interesting articles and demos/case studies of said topic - stuff like human-computer interactions and subtle effects on user experience are my bread and butter. It's a major contributing factor to why I'm learning JavaScript, React, responsive design, and how to use tools like Figma and Adobe XD. |
| 35 | + </span>, |
| 36 | + <span> |
| 37 | + My friends always tell me that I'm addicted to coding, but I like to think of it less as an addiction to coding and more as a passion for solving problems. I find myself engrossed in creating solutions to tough problems and pushing myself to always improve my skills and abilities; before you know it, I've been programming for hours upon hours. This is also one aspect of my skills that I'm constantly improving, so I'm also interested in more sustainable and long-term coding practices like Agile development and working in a professional environment. |
| 38 | + </span>, |
| 39 | + <span> |
| 40 | + However, I also believe that creating solutions to problems and learning new ideas aren't limited to the scope of studying and coding. I'm currently working with a huge amount of passionate individuals on organizing a <a href="https://www.tedxuw.com/" target="_blank">700+ attendee TEDx event</a>, powering one of the <a href="https://teamwaterloop.ca/" target="_blank">world's top 25 hyperloop teams</a>, and leading the next iteration of <a href="https://equithon.org/" target="_blank">Waterloo's largest social innovation hackathon</a>. These have been incredibly rewarding learning experiences that I cherish greatly, and I'm hoping to continue contributing and getting involved with various communities now and into the future. |
| 41 | + </span>, |
| 42 | + <span> |
| 43 | + If you've made it this far, props (no React pun intended) to you 🥂 I'm always looking for new initiatives. If you have any questions or wanna chat, shoot me an email or find me on social media! |
| 44 | + </span> |
| 45 | +] |
| 46 | + |
| 47 | + |
| 48 | +export const INTERESTS_LIST = [ |
| 49 | + { name: "Travel", icon: "briefcase" }, |
| 50 | + { name: "Fitness", icon: "activity" }, |
| 51 | + { name: "Games", icon: "crosshair" }, |
| 52 | + { name: "Coding", icon: "code" }, |
| 53 | + { name: "Volunteering", icon: "heart" } |
| 54 | +] |
| 55 | + |
| 56 | +export const SKILLS_LIST = [ |
| 57 | + { |
| 58 | + type: 'languages', |
| 59 | + children: [ |
| 60 | + { name: "JavaScript", icon: "javascript" }, |
| 61 | + { name: "Ruby", icon: "ruby" }, |
| 62 | + { name: "Python", icon: "python" }, |
| 63 | + ] |
| 64 | + }, |
| 65 | + { |
| 66 | + type: 'frameworks', |
| 67 | + children: [ |
| 68 | + { name: "React", icon: "atom" }, |
| 69 | + { name: "Ruby on Rails", icon: "ruby_on_rails" }, |
| 70 | + { name: "HTML", icon: "html5" }, |
| 71 | + { name: "CSS", icon: "css3" }, |
| 72 | + { name: "Ionic 3", icon: "ionic" }, |
| 73 | + { name: "Angular 4", icon: "angular" }, |
| 74 | + { name: "MeteorJS", icon: "meteor" }, |
| 75 | + ] |
| 76 | + }, |
| 77 | + { |
| 78 | + type: 'tools', |
| 79 | + children: [ |
| 80 | + { name: "SQL Databases", icon: "database" }, |
| 81 | + { name: "Terminal (Bash)", icon: "terminal" }, |
| 82 | + { name: "MongoDB & NoSQL DBs", icon: "mongodb" }, |
| 83 | + { name: "Git", icon: "git_branch" }, |
| 84 | + { name: "Creative Problem Solving", icon: "stackoverflow" }, |
| 85 | + ], |
| 86 | + } |
| 87 | +] |
0 commit comments