feat(skills):Added object to store skill's websites.
This commit is contained in:
+124
-1
@@ -358,6 +358,122 @@ const icons = {
|
|||||||
"https://upload.wikimedia.org/wikipedia/commons/0/05/Scikit_learn_logo_small.svg",
|
"https://upload.wikimedia.org/wikipedia/commons/0/05/Scikit_learn_logo_small.svg",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const skillWebsites = {
|
||||||
|
vuejs: "https://vuejs.org/",
|
||||||
|
react: "",
|
||||||
|
angularjs: "",
|
||||||
|
aws: "",
|
||||||
|
android: "",
|
||||||
|
backbonejs: "",
|
||||||
|
bootstrap: "",
|
||||||
|
c: "",
|
||||||
|
canvasjs: "",
|
||||||
|
coffeescript: "",
|
||||||
|
codeigniter: "",
|
||||||
|
cplusplus: "",
|
||||||
|
css3: "",
|
||||||
|
csharp: "",
|
||||||
|
d3js: "",
|
||||||
|
django: "",
|
||||||
|
docker: "",
|
||||||
|
dotnet: "",
|
||||||
|
electron: "",
|
||||||
|
express: "",
|
||||||
|
go: "",
|
||||||
|
gulp: "",
|
||||||
|
html5: "",
|
||||||
|
hugo: "",
|
||||||
|
java: "",
|
||||||
|
javascript: "",
|
||||||
|
ionic: "",
|
||||||
|
laravel: "",
|
||||||
|
meteor: "",
|
||||||
|
mongodb: "",
|
||||||
|
mysql: "",
|
||||||
|
nginx: "",
|
||||||
|
nodejs: "",
|
||||||
|
oracle: "",
|
||||||
|
photoshop: "",
|
||||||
|
php: "",
|
||||||
|
postgresql: "",
|
||||||
|
python: "",
|
||||||
|
rails: "",
|
||||||
|
redis: "",
|
||||||
|
ruby: "",
|
||||||
|
rust: "",
|
||||||
|
sass: "",
|
||||||
|
scala: "",
|
||||||
|
symfony: "",
|
||||||
|
spring: "",
|
||||||
|
swift: "",
|
||||||
|
typescript: "",
|
||||||
|
linux: "",
|
||||||
|
redux: "",
|
||||||
|
webpack: "",
|
||||||
|
flutter: "",
|
||||||
|
dart: "",
|
||||||
|
kotlin: "",
|
||||||
|
tensorflow: "",
|
||||||
|
chartjs: "",
|
||||||
|
jenkins: "",
|
||||||
|
gcp: "",
|
||||||
|
kubernetes: "",
|
||||||
|
azure: "",
|
||||||
|
git: "",
|
||||||
|
kafka: "",
|
||||||
|
solr: "",
|
||||||
|
cassandra: "",
|
||||||
|
rabbitMQ: "",
|
||||||
|
hadoop: "",
|
||||||
|
bash: "",
|
||||||
|
pytorch: "",
|
||||||
|
opencv: "",
|
||||||
|
illustrator: "",
|
||||||
|
figma: "",
|
||||||
|
blender: "",
|
||||||
|
babel: "",
|
||||||
|
sketch: "",
|
||||||
|
flask: "",
|
||||||
|
nativescript: "",
|
||||||
|
xamarin: "",
|
||||||
|
vagrant: "",
|
||||||
|
tailwind: "",
|
||||||
|
materialize: "",
|
||||||
|
invision: "",
|
||||||
|
framer: "",
|
||||||
|
bulma: "",
|
||||||
|
couchdb: "",
|
||||||
|
firebase: "",
|
||||||
|
amplify: "",
|
||||||
|
hive: "",
|
||||||
|
realm: "",
|
||||||
|
gatsby: "",
|
||||||
|
gridsome: "",
|
||||||
|
nuxtjs: "",
|
||||||
|
jekyll: "",
|
||||||
|
nextjs: "",
|
||||||
|
reactnative: "",
|
||||||
|
mariadb: "",
|
||||||
|
objectivec: "",
|
||||||
|
clojure: "",
|
||||||
|
haskell: "",
|
||||||
|
svelte: "",
|
||||||
|
vuetify: "",
|
||||||
|
pug: "",
|
||||||
|
mocha: "",
|
||||||
|
jest: "",
|
||||||
|
cypress: "",
|
||||||
|
selenium: "",
|
||||||
|
puppeteer: "",
|
||||||
|
karma: "",
|
||||||
|
jasmine: "",
|
||||||
|
gtk: "",
|
||||||
|
qt: "",
|
||||||
|
wx_widgets: "",
|
||||||
|
ember: "",
|
||||||
|
scikit_learn: "",
|
||||||
|
}
|
||||||
|
|
||||||
const initialSkillState = {}
|
const initialSkillState = {}
|
||||||
|
|
||||||
const skillsArray = Object.keys(categorizedSkills).map(
|
const skillsArray = Object.keys(categorizedSkills).map(
|
||||||
@@ -371,4 +487,11 @@ skills.forEach(skill => {
|
|||||||
|
|
||||||
const categories = Object.keys(categorizedSkills)
|
const categories = Object.keys(categorizedSkills)
|
||||||
|
|
||||||
export { initialSkillState, icons, skills, categorizedSkills, categories }
|
export {
|
||||||
|
initialSkillState,
|
||||||
|
icons,
|
||||||
|
skills,
|
||||||
|
skillWebsites,
|
||||||
|
categorizedSkills,
|
||||||
|
categories,
|
||||||
|
}
|
||||||
|
|||||||
+1
-1
@@ -8,7 +8,7 @@ import Work from "../components/work"
|
|||||||
import Social from "../components/social"
|
import Social from "../components/social"
|
||||||
import Addons from "../components/addons"
|
import Addons from "../components/addons"
|
||||||
import Skills from "../components/skills"
|
import Skills from "../components/skills"
|
||||||
import Donate from "../components/donate";
|
import Donate from "../components/donate"
|
||||||
import { initialSkillState } from "../constants/skills"
|
import { initialSkillState } from "../constants/skills"
|
||||||
import gsap from "gsap"
|
import gsap from "gsap"
|
||||||
import Loader from "../components/loader"
|
import Loader from "../components/loader"
|
||||||
|
|||||||
Reference in New Issue
Block a user