feat(skills):Added object to store skill's websites.

This commit is contained in:
jaideepghosh
2020-09-25 15:12:15 +05:30
parent f3e7277048
commit dc1930144d
2 changed files with 125 additions and 2 deletions
+124 -1
View File
@@ -358,6 +358,122 @@ const icons = {
"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 skillsArray = Object.keys(categorizedSkills).map(
@@ -371,4 +487,11 @@ skills.forEach(skill => {
const categories = Object.keys(categorizedSkills)
export { initialSkillState, icons, skills, categorizedSkills, categories }
export {
initialSkillState,
icons,
skills,
skillWebsites,
categorizedSkills,
categories,
}
+1 -1
View File
@@ -8,7 +8,7 @@ import Work from "../components/work"
import Social from "../components/social"
import Addons from "../components/addons"
import Skills from "../components/skills"
import Donate from "../components/donate";
import Donate from "../components/donate"
import { initialSkillState } from "../constants/skills"
import gsap from "gsap"
import Loader from "../components/loader"