├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .gitpod.yml ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── CODE_STYLE_GUIDE.md ├── __mocks__ ├── file-mock.js └── gatsby.js ├── deploy.yml ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── jest-preprocess.js ├── jest.config.js ├── loadershim.js ├── package.json ├── setupTests.js ├── src ├── components │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── addons.test.js.snap │ │ │ ├── donate.test.js.snap │ │ │ ├── footer.test.js.snap │ │ │ ├── header.test.js.snap │ │ │ ├── loader.test.js.snap │ │ │ ├── markdown.test.js.snap │ │ │ ├── markdownPreview.test.js.snap │ │ │ ├── skills.test.js.snap │ │ │ ├── social.test.js.snap │ │ │ ├── subtitle.test.js.snap │ │ │ ├── title.test.js.snap │ │ │ └── work.test.js.snap │ │ ├── addons.test.js │ │ ├── donate.test.js │ │ ├── footer.test.js │ │ ├── header.test.js │ │ ├── loader.test.js │ │ ├── markdown.test.js │ │ ├── markdownPreview.test.js │ │ ├── skills.test.js │ │ ├── social.test.js │ │ ├── subtitle.test.js │ │ ├── title.test.js │ │ └── work.test.js │ ├── addons.jsx │ ├── donate.jsx │ ├── footer.jsx │ ├── header.jsx │ ├── layout.jsx │ ├── loader.jsx │ ├── markdown.jsx │ ├── markdownPreview.jsx │ ├── seo.jsx │ ├── skills.jsx │ ├── social.jsx │ ├── subtitle.jsx │ ├── support.jsx │ ├── title.jsx │ └── work.jsx ├── constants │ ├── defaults.js │ ├── page-links.js │ └── skills.js ├── designs │ └── GPRG Style Guide.png ├── html.jsx ├── images │ ├── Discord-Logo.png │ ├── LogoName.png │ ├── icons │ │ ├── AIML │ │ │ ├── opencv.svg │ │ │ ├── pytorch.svg │ │ │ ├── scikit.svg │ │ │ └── tensorflow.svg │ │ ├── Automation │ │ │ ├── ifttt.svg │ │ │ └── zapier.svg │ │ ├── BaaS │ │ │ ├── amplify.svg │ │ │ ├── firebase.svg │ │ │ └── heroku.svg │ │ ├── BackendDevelopment │ │ │ ├── express.svg │ │ │ ├── graphql.svg │ │ │ ├── hadoop.svg │ │ │ ├── kafka.svg │ │ │ ├── nestjs.svg │ │ │ ├── nginx.svg │ │ │ ├── nodejs.svg │ │ │ ├── openresty.svg │ │ │ ├── rabbitmq.svg │ │ │ ├── solr.svg │ │ │ └── spring.svg │ │ ├── DataVisualization │ │ │ ├── canvasjs.svg │ │ │ ├── chartjs.svg │ │ │ ├── d3js.svg │ │ │ ├── grafana.svg │ │ │ └── kibana.svg │ │ ├── Database │ │ │ ├── cassandra.svg │ │ │ ├── cockroachdb.svg │ │ │ ├── couchdb.svg │ │ │ ├── elasticsearch.svg │ │ │ ├── hive.svg │ │ │ ├── mariadb.svg │ │ │ ├── mongodb.svg │ │ │ ├── mysql.svg │ │ │ ├── oracle.svg │ │ │ ├── postgresql.svg │ │ │ ├── realm.svg │ │ │ ├── redis.svg │ │ │ └── sqlite.svg │ │ ├── Devops │ │ │ ├── aws.svg │ │ │ ├── azure.svg │ │ │ ├── bash.svg │ │ │ ├── circleci.svg │ │ │ ├── docker.svg │ │ │ ├── gcp.svg │ │ │ ├── jenkins.svg │ │ │ ├── kubernetes.svg │ │ │ ├── travisci.svg │ │ │ └── vagrant.svg │ │ ├── Framework │ │ │ ├── codeigniter.svg │ │ │ ├── django.svg │ │ │ ├── dotnet.svg │ │ │ ├── electron.svg │ │ │ ├── flask.svg │ │ │ ├── laravel.svg │ │ │ ├── quasar.svg │ │ │ ├── rails.svg │ │ │ └── symfony.svg │ │ ├── FrontendDevelopment │ │ │ ├── angularjs.svg │ │ │ ├── babel.svg │ │ │ ├── backbonejs.svg │ │ │ ├── bootstrap.svg │ │ │ ├── bulma.svg │ │ │ ├── css.svg │ │ │ ├── ember.svg │ │ │ ├── gtk.svg │ │ │ ├── gulp.svg │ │ │ ├── html.svg │ │ │ ├── materialize.svg │ │ │ ├── meteor.svg │ │ │ ├── pug.svg │ │ │ ├── qt.svg │ │ │ ├── reactjs.svg │ │ │ ├── redux.svg │ │ │ ├── sass.svg │ │ │ ├── svelte.svg │ │ │ ├── tailwind.svg │ │ │ ├── vuejs.svg │ │ │ ├── vuetify.svg │ │ │ ├── webpack.svg │ │ │ └── wxwidgets.svg │ │ ├── GameEngines │ │ │ ├── unity.svg │ │ │ └── unreal.svg │ │ ├── MobileAppDevelopment │ │ │ ├── android.svg │ │ │ ├── apachecordova.svg │ │ │ ├── dart.svg │ │ │ ├── flutter.svg │ │ │ ├── ionic.svg │ │ │ ├── kotlin.svg │ │ │ ├── nativescript.svg │ │ │ ├── reactnative.svg │ │ │ └── xamarin.svg │ │ ├── Other │ │ │ ├── arduino.svg │ │ │ ├── git.svg │ │ │ └── linux.svg │ │ ├── ProgrammingLanguages │ │ │ ├── c.svg │ │ │ ├── clojure.svg │ │ │ ├── coffeescript.svg │ │ │ ├── cpp.svg │ │ │ ├── csharp.svg │ │ │ ├── elixir.svg │ │ │ ├── erlang.svg │ │ │ ├── go.svg │ │ │ ├── haskell.svg │ │ │ ├── java.svg │ │ │ ├── javascript.svg │ │ │ ├── objectivec.svg │ │ │ ├── perl.svg │ │ │ ├── php.svg │ │ │ ├── python.svg │ │ │ ├── ruby.svg │ │ │ ├── rust.svg │ │ │ ├── scala.svg │ │ │ ├── swift.svg │ │ │ └── typescript.svg │ │ ├── Social │ │ │ ├── behance.svg │ │ │ ├── blogger.svg │ │ │ ├── codeforces.svg │ │ │ ├── codepen.svg │ │ │ ├── codesandbox.svg │ │ │ ├── devto.svg │ │ │ ├── discord.svg │ │ │ ├── dribbble.svg │ │ │ ├── dropbox.svg │ │ │ ├── envato.svg │ │ │ ├── facebook-alt.svg │ │ │ ├── facebook.svg │ │ │ ├── geeks-for-geeks.svg │ │ │ ├── github.svg │ │ │ ├── google.svg │ │ │ ├── hackerearth.svg │ │ │ ├── hackerrank.svg │ │ │ ├── hashnode.svg │ │ │ ├── instagram.svg │ │ │ ├── kaggle.svg │ │ │ ├── leet-code.svg │ │ │ ├── linked-in-alt.svg │ │ │ ├── linked-in.svg │ │ │ ├── medium.svg │ │ │ ├── messenger.svg │ │ │ ├── myspace-alt.svg │ │ │ ├── myspace.svg │ │ │ ├── path.svg │ │ │ ├── photo.svg │ │ │ ├── picasa.svg │ │ │ ├── pinterest.svg │ │ │ ├── reddit.svg │ │ │ ├── rss.svg │ │ │ ├── skype.svg │ │ │ ├── snapchat.svg │ │ │ ├── soundcloud.svg │ │ │ ├── spotify.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── team.svg │ │ │ ├── topcoder.svg │ │ │ ├── tumblr.svg │ │ │ ├── twitch.svg │ │ │ ├── twitter-alt.svg │ │ │ ├── twitter.svg │ │ │ ├── viddler.svg │ │ │ ├── vimeo.svg │ │ │ ├── vine.svg │ │ │ ├── vk.svg │ │ │ ├── whatsapp.svg │ │ │ ├── wordpress.svg │ │ │ ├── yahoo.svg │ │ │ └── youtube.svg │ │ ├── Software │ │ │ ├── blender.svg │ │ │ ├── figma.svg │ │ │ ├── framer.svg │ │ │ ├── illustrator.svg │ │ │ ├── invision.svg │ │ │ ├── matlab.svg │ │ │ ├── photoshop.svg │ │ │ ├── postman.svg │ │ │ ├── sketch.svg │ │ │ ├── solidworks.svg │ │ │ └── xd.svg │ │ ├── StaticSiteGenerators │ │ │ ├── 11ty.svg │ │ │ ├── gatsby.svg │ │ │ ├── gridsome.svg │ │ │ ├── hexo.svg │ │ │ ├── hugo.svg │ │ │ ├── jekyll.svg │ │ │ ├── middleman.svg │ │ │ ├── nextjs.svg │ │ │ ├── nuxtjs.svg │ │ │ ├── sapper.svg │ │ │ ├── scully.svg │ │ │ ├── sculpin.svg │ │ │ └── vuepress.svg │ │ ├── Testing │ │ │ ├── cypress.svg │ │ │ ├── jasmine.svg │ │ │ ├── jest.svg │ │ │ ├── karma.svg │ │ │ ├── mocha.svg │ │ │ ├── puppeteer.svg │ │ │ └── selenium.svg │ │ └── mysqlworkbench.svg │ └── mdg.png ├── markdown-pages │ ├── about.md │ ├── addons.md │ └── support.md ├── pages │ ├── 404.jsx │ ├── index.css │ └── index.jsx ├── styles │ └── tailwind.css ├── templates │ └── blogTemplate.js └── utils │ ├── __tests__ │ └── validation.test.js │ ├── link-generators.js │ ├── validation.js │ └── workflows.js └── tailwind.config.js /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/** -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_STYLE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/CODE_STYLE_GUIDE.md -------------------------------------------------------------------------------- /__mocks__/file-mock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /__mocks__/gatsby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/__mocks__/gatsby.js -------------------------------------------------------------------------------- /deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/deploy.yml -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /jest-preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/jest-preprocess.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/jest.config.js -------------------------------------------------------------------------------- /loadershim.js: -------------------------------------------------------------------------------- 1 | global.___loader = { 2 | enqueue: jest.fn(), 3 | }; 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/package.json -------------------------------------------------------------------------------- /setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/setupTests.js -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/addons.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/__snapshots__/addons.test.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/donate.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/__snapshots__/donate.test.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/footer.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/__snapshots__/footer.test.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/header.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/__snapshots__/header.test.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/loader.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/__snapshots__/loader.test.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/markdown.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/__snapshots__/markdown.test.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/markdownPreview.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/__snapshots__/markdownPreview.test.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/skills.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/__snapshots__/skills.test.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/social.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/__snapshots__/social.test.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/subtitle.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/__snapshots__/subtitle.test.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/title.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/__snapshots__/title.test.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/work.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/__snapshots__/work.test.js.snap -------------------------------------------------------------------------------- /src/components/__tests__/addons.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/addons.test.js -------------------------------------------------------------------------------- /src/components/__tests__/donate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/donate.test.js -------------------------------------------------------------------------------- /src/components/__tests__/footer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/footer.test.js -------------------------------------------------------------------------------- /src/components/__tests__/header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/header.test.js -------------------------------------------------------------------------------- /src/components/__tests__/loader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/loader.test.js -------------------------------------------------------------------------------- /src/components/__tests__/markdown.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/markdown.test.js -------------------------------------------------------------------------------- /src/components/__tests__/markdownPreview.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/markdownPreview.test.js -------------------------------------------------------------------------------- /src/components/__tests__/skills.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/skills.test.js -------------------------------------------------------------------------------- /src/components/__tests__/social.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/social.test.js -------------------------------------------------------------------------------- /src/components/__tests__/subtitle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/subtitle.test.js -------------------------------------------------------------------------------- /src/components/__tests__/title.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/title.test.js -------------------------------------------------------------------------------- /src/components/__tests__/work.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/__tests__/work.test.js -------------------------------------------------------------------------------- /src/components/addons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/addons.jsx -------------------------------------------------------------------------------- /src/components/donate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/donate.jsx -------------------------------------------------------------------------------- /src/components/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/footer.jsx -------------------------------------------------------------------------------- /src/components/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/header.jsx -------------------------------------------------------------------------------- /src/components/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/layout.jsx -------------------------------------------------------------------------------- /src/components/loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/loader.jsx -------------------------------------------------------------------------------- /src/components/markdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/markdown.jsx -------------------------------------------------------------------------------- /src/components/markdownPreview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/markdownPreview.jsx -------------------------------------------------------------------------------- /src/components/seo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/seo.jsx -------------------------------------------------------------------------------- /src/components/skills.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/skills.jsx -------------------------------------------------------------------------------- /src/components/social.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/social.jsx -------------------------------------------------------------------------------- /src/components/subtitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/subtitle.jsx -------------------------------------------------------------------------------- /src/components/support.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/support.jsx -------------------------------------------------------------------------------- /src/components/title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/title.jsx -------------------------------------------------------------------------------- /src/components/work.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/components/work.jsx -------------------------------------------------------------------------------- /src/constants/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/constants/defaults.js -------------------------------------------------------------------------------- /src/constants/page-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/constants/page-links.js -------------------------------------------------------------------------------- /src/constants/skills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/constants/skills.js -------------------------------------------------------------------------------- /src/designs/GPRG Style Guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/designs/GPRG Style Guide.png -------------------------------------------------------------------------------- /src/html.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/html.jsx -------------------------------------------------------------------------------- /src/images/Discord-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/Discord-Logo.png -------------------------------------------------------------------------------- /src/images/LogoName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/LogoName.png -------------------------------------------------------------------------------- /src/images/icons/AIML/opencv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/AIML/opencv.svg -------------------------------------------------------------------------------- /src/images/icons/AIML/pytorch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/AIML/pytorch.svg -------------------------------------------------------------------------------- /src/images/icons/AIML/scikit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/AIML/scikit.svg -------------------------------------------------------------------------------- /src/images/icons/AIML/tensorflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/AIML/tensorflow.svg -------------------------------------------------------------------------------- /src/images/icons/Automation/ifttt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Automation/ifttt.svg -------------------------------------------------------------------------------- /src/images/icons/Automation/zapier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Automation/zapier.svg -------------------------------------------------------------------------------- /src/images/icons/BaaS/amplify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BaaS/amplify.svg -------------------------------------------------------------------------------- /src/images/icons/BaaS/firebase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BaaS/firebase.svg -------------------------------------------------------------------------------- /src/images/icons/BaaS/heroku.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BaaS/heroku.svg -------------------------------------------------------------------------------- /src/images/icons/BackendDevelopment/express.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BackendDevelopment/express.svg -------------------------------------------------------------------------------- /src/images/icons/BackendDevelopment/graphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BackendDevelopment/graphql.svg -------------------------------------------------------------------------------- /src/images/icons/BackendDevelopment/hadoop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BackendDevelopment/hadoop.svg -------------------------------------------------------------------------------- /src/images/icons/BackendDevelopment/kafka.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BackendDevelopment/kafka.svg -------------------------------------------------------------------------------- /src/images/icons/BackendDevelopment/nestjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BackendDevelopment/nestjs.svg -------------------------------------------------------------------------------- /src/images/icons/BackendDevelopment/nginx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BackendDevelopment/nginx.svg -------------------------------------------------------------------------------- /src/images/icons/BackendDevelopment/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BackendDevelopment/nodejs.svg -------------------------------------------------------------------------------- /src/images/icons/BackendDevelopment/openresty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BackendDevelopment/openresty.svg -------------------------------------------------------------------------------- /src/images/icons/BackendDevelopment/rabbitmq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BackendDevelopment/rabbitmq.svg -------------------------------------------------------------------------------- /src/images/icons/BackendDevelopment/solr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BackendDevelopment/solr.svg -------------------------------------------------------------------------------- /src/images/icons/BackendDevelopment/spring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/BackendDevelopment/spring.svg -------------------------------------------------------------------------------- /src/images/icons/DataVisualization/canvasjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/DataVisualization/canvasjs.svg -------------------------------------------------------------------------------- /src/images/icons/DataVisualization/chartjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/DataVisualization/chartjs.svg -------------------------------------------------------------------------------- /src/images/icons/DataVisualization/d3js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/DataVisualization/d3js.svg -------------------------------------------------------------------------------- /src/images/icons/DataVisualization/grafana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/DataVisualization/grafana.svg -------------------------------------------------------------------------------- /src/images/icons/DataVisualization/kibana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/DataVisualization/kibana.svg -------------------------------------------------------------------------------- /src/images/icons/Database/cassandra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/cassandra.svg -------------------------------------------------------------------------------- /src/images/icons/Database/cockroachdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/cockroachdb.svg -------------------------------------------------------------------------------- /src/images/icons/Database/couchdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/couchdb.svg -------------------------------------------------------------------------------- /src/images/icons/Database/elasticsearch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/elasticsearch.svg -------------------------------------------------------------------------------- /src/images/icons/Database/hive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/hive.svg -------------------------------------------------------------------------------- /src/images/icons/Database/mariadb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/mariadb.svg -------------------------------------------------------------------------------- /src/images/icons/Database/mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/mongodb.svg -------------------------------------------------------------------------------- /src/images/icons/Database/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/mysql.svg -------------------------------------------------------------------------------- /src/images/icons/Database/oracle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/oracle.svg -------------------------------------------------------------------------------- /src/images/icons/Database/postgresql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/postgresql.svg -------------------------------------------------------------------------------- /src/images/icons/Database/realm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/realm.svg -------------------------------------------------------------------------------- /src/images/icons/Database/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/redis.svg -------------------------------------------------------------------------------- /src/images/icons/Database/sqlite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Database/sqlite.svg -------------------------------------------------------------------------------- /src/images/icons/Devops/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Devops/aws.svg -------------------------------------------------------------------------------- /src/images/icons/Devops/azure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Devops/azure.svg -------------------------------------------------------------------------------- /src/images/icons/Devops/bash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Devops/bash.svg -------------------------------------------------------------------------------- /src/images/icons/Devops/circleci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Devops/circleci.svg -------------------------------------------------------------------------------- /src/images/icons/Devops/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Devops/docker.svg -------------------------------------------------------------------------------- /src/images/icons/Devops/gcp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Devops/gcp.svg -------------------------------------------------------------------------------- /src/images/icons/Devops/jenkins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Devops/jenkins.svg -------------------------------------------------------------------------------- /src/images/icons/Devops/kubernetes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Devops/kubernetes.svg -------------------------------------------------------------------------------- /src/images/icons/Devops/travisci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Devops/travisci.svg -------------------------------------------------------------------------------- /src/images/icons/Devops/vagrant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Devops/vagrant.svg -------------------------------------------------------------------------------- /src/images/icons/Framework/codeigniter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Framework/codeigniter.svg -------------------------------------------------------------------------------- /src/images/icons/Framework/django.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Framework/django.svg -------------------------------------------------------------------------------- /src/images/icons/Framework/dotnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Framework/dotnet.svg -------------------------------------------------------------------------------- /src/images/icons/Framework/electron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Framework/electron.svg -------------------------------------------------------------------------------- /src/images/icons/Framework/flask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Framework/flask.svg -------------------------------------------------------------------------------- /src/images/icons/Framework/laravel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Framework/laravel.svg -------------------------------------------------------------------------------- /src/images/icons/Framework/quasar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Framework/quasar.svg -------------------------------------------------------------------------------- /src/images/icons/Framework/rails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Framework/rails.svg -------------------------------------------------------------------------------- /src/images/icons/Framework/symfony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Framework/symfony.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/angularjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/angularjs.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/babel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/babel.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/backbonejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/backbonejs.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/bootstrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/bootstrap.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/bulma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/bulma.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/css.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/ember.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/ember.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/gtk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/gtk.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/gulp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/gulp.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/html.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/materialize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/materialize.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/meteor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/meteor.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/pug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/pug.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/qt.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/reactjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/reactjs.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/redux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/redux.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/sass.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/svelte.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/tailwind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/tailwind.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/vuejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/vuejs.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/vuetify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/vuetify.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/webpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/webpack.svg -------------------------------------------------------------------------------- /src/images/icons/FrontendDevelopment/wxwidgets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/FrontendDevelopment/wxwidgets.svg -------------------------------------------------------------------------------- /src/images/icons/GameEngines/unity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/GameEngines/unity.svg -------------------------------------------------------------------------------- /src/images/icons/GameEngines/unreal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/GameEngines/unreal.svg -------------------------------------------------------------------------------- /src/images/icons/MobileAppDevelopment/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/MobileAppDevelopment/android.svg -------------------------------------------------------------------------------- /src/images/icons/MobileAppDevelopment/apachecordova.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/MobileAppDevelopment/apachecordova.svg -------------------------------------------------------------------------------- /src/images/icons/MobileAppDevelopment/dart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/MobileAppDevelopment/dart.svg -------------------------------------------------------------------------------- /src/images/icons/MobileAppDevelopment/flutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/MobileAppDevelopment/flutter.svg -------------------------------------------------------------------------------- /src/images/icons/MobileAppDevelopment/ionic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/MobileAppDevelopment/ionic.svg -------------------------------------------------------------------------------- /src/images/icons/MobileAppDevelopment/kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/MobileAppDevelopment/kotlin.svg -------------------------------------------------------------------------------- /src/images/icons/MobileAppDevelopment/nativescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/MobileAppDevelopment/nativescript.svg -------------------------------------------------------------------------------- /src/images/icons/MobileAppDevelopment/reactnative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/MobileAppDevelopment/reactnative.svg -------------------------------------------------------------------------------- /src/images/icons/MobileAppDevelopment/xamarin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/MobileAppDevelopment/xamarin.svg -------------------------------------------------------------------------------- /src/images/icons/Other/arduino.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Other/arduino.svg -------------------------------------------------------------------------------- /src/images/icons/Other/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Other/git.svg -------------------------------------------------------------------------------- /src/images/icons/Other/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Other/linux.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/c.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/clojure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/clojure.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/coffeescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/coffeescript.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/cpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/cpp.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/csharp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/csharp.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/elixir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/elixir.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/erlang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/erlang.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/go.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/haskell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/haskell.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/java.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/javascript.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/objectivec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/objectivec.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/perl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/perl.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/php.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/python.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/ruby.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/rust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/rust.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/scala.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/scala.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/swift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/swift.svg -------------------------------------------------------------------------------- /src/images/icons/ProgrammingLanguages/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/ProgrammingLanguages/typescript.svg -------------------------------------------------------------------------------- /src/images/icons/Social/behance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/behance.svg -------------------------------------------------------------------------------- /src/images/icons/Social/blogger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/blogger.svg -------------------------------------------------------------------------------- /src/images/icons/Social/codeforces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/codeforces.svg -------------------------------------------------------------------------------- /src/images/icons/Social/codepen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/codepen.svg -------------------------------------------------------------------------------- /src/images/icons/Social/codesandbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/codesandbox.svg -------------------------------------------------------------------------------- /src/images/icons/Social/devto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/devto.svg -------------------------------------------------------------------------------- /src/images/icons/Social/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/discord.svg -------------------------------------------------------------------------------- /src/images/icons/Social/dribbble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/dribbble.svg -------------------------------------------------------------------------------- /src/images/icons/Social/dropbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/dropbox.svg -------------------------------------------------------------------------------- /src/images/icons/Social/envato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/envato.svg -------------------------------------------------------------------------------- /src/images/icons/Social/facebook-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/facebook-alt.svg -------------------------------------------------------------------------------- /src/images/icons/Social/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/facebook.svg -------------------------------------------------------------------------------- /src/images/icons/Social/geeks-for-geeks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/geeks-for-geeks.svg -------------------------------------------------------------------------------- /src/images/icons/Social/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/github.svg -------------------------------------------------------------------------------- /src/images/icons/Social/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/google.svg -------------------------------------------------------------------------------- /src/images/icons/Social/hackerearth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/hackerearth.svg -------------------------------------------------------------------------------- /src/images/icons/Social/hackerrank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/hackerrank.svg -------------------------------------------------------------------------------- /src/images/icons/Social/hashnode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/hashnode.svg -------------------------------------------------------------------------------- /src/images/icons/Social/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/instagram.svg -------------------------------------------------------------------------------- /src/images/icons/Social/kaggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/kaggle.svg -------------------------------------------------------------------------------- /src/images/icons/Social/leet-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/leet-code.svg -------------------------------------------------------------------------------- /src/images/icons/Social/linked-in-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/linked-in-alt.svg -------------------------------------------------------------------------------- /src/images/icons/Social/linked-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/linked-in.svg -------------------------------------------------------------------------------- /src/images/icons/Social/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/medium.svg -------------------------------------------------------------------------------- /src/images/icons/Social/messenger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/messenger.svg -------------------------------------------------------------------------------- /src/images/icons/Social/myspace-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/myspace-alt.svg -------------------------------------------------------------------------------- /src/images/icons/Social/myspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/myspace.svg -------------------------------------------------------------------------------- /src/images/icons/Social/path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/path.svg -------------------------------------------------------------------------------- /src/images/icons/Social/photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/photo.svg -------------------------------------------------------------------------------- /src/images/icons/Social/picasa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/picasa.svg -------------------------------------------------------------------------------- /src/images/icons/Social/pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/pinterest.svg -------------------------------------------------------------------------------- /src/images/icons/Social/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/reddit.svg -------------------------------------------------------------------------------- /src/images/icons/Social/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/rss.svg -------------------------------------------------------------------------------- /src/images/icons/Social/skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/skype.svg -------------------------------------------------------------------------------- /src/images/icons/Social/snapchat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/snapchat.svg -------------------------------------------------------------------------------- /src/images/icons/Social/soundcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/soundcloud.svg -------------------------------------------------------------------------------- /src/images/icons/Social/spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/spotify.svg -------------------------------------------------------------------------------- /src/images/icons/Social/stack-overflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/stack-overflow.svg -------------------------------------------------------------------------------- /src/images/icons/Social/team.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/team.svg -------------------------------------------------------------------------------- /src/images/icons/Social/topcoder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/topcoder.svg -------------------------------------------------------------------------------- /src/images/icons/Social/tumblr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/tumblr.svg -------------------------------------------------------------------------------- /src/images/icons/Social/twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/twitch.svg -------------------------------------------------------------------------------- /src/images/icons/Social/twitter-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/twitter-alt.svg -------------------------------------------------------------------------------- /src/images/icons/Social/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/twitter.svg -------------------------------------------------------------------------------- /src/images/icons/Social/viddler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/viddler.svg -------------------------------------------------------------------------------- /src/images/icons/Social/vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/vimeo.svg -------------------------------------------------------------------------------- /src/images/icons/Social/vine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/vine.svg -------------------------------------------------------------------------------- /src/images/icons/Social/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/vk.svg -------------------------------------------------------------------------------- /src/images/icons/Social/whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/whatsapp.svg -------------------------------------------------------------------------------- /src/images/icons/Social/wordpress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/wordpress.svg -------------------------------------------------------------------------------- /src/images/icons/Social/yahoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/yahoo.svg -------------------------------------------------------------------------------- /src/images/icons/Social/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Social/youtube.svg -------------------------------------------------------------------------------- /src/images/icons/Software/blender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Software/blender.svg -------------------------------------------------------------------------------- /src/images/icons/Software/figma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Software/figma.svg -------------------------------------------------------------------------------- /src/images/icons/Software/framer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Software/framer.svg -------------------------------------------------------------------------------- /src/images/icons/Software/illustrator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Software/illustrator.svg -------------------------------------------------------------------------------- /src/images/icons/Software/invision.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Software/invision.svg -------------------------------------------------------------------------------- /src/images/icons/Software/matlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Software/matlab.svg -------------------------------------------------------------------------------- /src/images/icons/Software/photoshop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Software/photoshop.svg -------------------------------------------------------------------------------- /src/images/icons/Software/postman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Software/postman.svg -------------------------------------------------------------------------------- /src/images/icons/Software/sketch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Software/sketch.svg -------------------------------------------------------------------------------- /src/images/icons/Software/solidworks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Software/solidworks.svg -------------------------------------------------------------------------------- /src/images/icons/Software/xd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Software/xd.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/11ty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/11ty.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/gatsby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/gatsby.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/gridsome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/gridsome.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/hexo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/hexo.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/hugo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/hugo.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/jekyll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/jekyll.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/middleman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/middleman.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/nextjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/nextjs.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/nuxtjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/nuxtjs.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/sapper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/sapper.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/scully.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/scully.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/sculpin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/sculpin.svg -------------------------------------------------------------------------------- /src/images/icons/StaticSiteGenerators/vuepress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/StaticSiteGenerators/vuepress.svg -------------------------------------------------------------------------------- /src/images/icons/Testing/cypress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Testing/cypress.svg -------------------------------------------------------------------------------- /src/images/icons/Testing/jasmine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Testing/jasmine.svg -------------------------------------------------------------------------------- /src/images/icons/Testing/jest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Testing/jest.svg -------------------------------------------------------------------------------- /src/images/icons/Testing/karma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Testing/karma.svg -------------------------------------------------------------------------------- /src/images/icons/Testing/mocha.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Testing/mocha.svg -------------------------------------------------------------------------------- /src/images/icons/Testing/puppeteer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Testing/puppeteer.svg -------------------------------------------------------------------------------- /src/images/icons/Testing/selenium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/Testing/selenium.svg -------------------------------------------------------------------------------- /src/images/icons/mysqlworkbench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/icons/mysqlworkbench.svg -------------------------------------------------------------------------------- /src/images/mdg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/images/mdg.png -------------------------------------------------------------------------------- /src/markdown-pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/markdown-pages/about.md -------------------------------------------------------------------------------- /src/markdown-pages/addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/markdown-pages/addons.md -------------------------------------------------------------------------------- /src/markdown-pages/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/markdown-pages/support.md -------------------------------------------------------------------------------- /src/pages/404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/pages/404.jsx -------------------------------------------------------------------------------- /src/pages/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/pages/index.css -------------------------------------------------------------------------------- /src/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/pages/index.jsx -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /src/templates/blogTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/templates/blogTemplate.js -------------------------------------------------------------------------------- /src/utils/__tests__/validation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/utils/__tests__/validation.test.js -------------------------------------------------------------------------------- /src/utils/link-generators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/utils/link-generators.js -------------------------------------------------------------------------------- /src/utils/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/utils/validation.js -------------------------------------------------------------------------------- /src/utils/workflows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/src/utils/workflows.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/Genne/HEAD/tailwind.config.js --------------------------------------------------------------------------------