├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .postcssrc.js ├── LICENSE ├── README.md ├── assets ├── homepage.png ├── projects.png └── sketches.png ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── quasar.conf.js ├── quasar.extensions.json └── src ├── App.vue ├── assets ├── quasar-logo-full.svg └── sad.svg ├── boot ├── .gitkeep └── i18n.js ├── components └── EssentialLink.vue ├── css ├── app.sass ├── fonts │ └── Lobster-Regular.ttf └── quasar.variables.sass ├── i18n ├── en-us │ └── index.js └── index.js ├── index.template.html ├── layouts └── MainLayout.vue ├── pages ├── Error404.vue └── Index.vue ├── router ├── index.js └── routes.js └── statics ├── icons ├── favicon-128x128.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png └── favicon.ico └── images ├── admin_crm.png ├── company_profile.png ├── contact_us.jpg ├── cooltab.jpg ├── my_1.jpg ├── my_1_2.jpg ├── my_2.jpg ├── quasar_draggable_tree.png ├── quasar_scrum.png ├── ribbon.png ├── sketch_1.jpg └── sketch_2.jpg /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [mayank091193] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .thumbs.db 3 | node_modules 4 | 5 | # Quasar core related directories 6 | .quasar 7 | /dist 8 | 9 | # Cordova related directories and files 10 | /src-cordova/node_modules 11 | /src-cordova/platforms 12 | /src-cordova/plugins 13 | /src-cordova/www 14 | 15 | # Capacitor related directories and files 16 | /src-capacitor/www 17 | /src-capacitor/node_modules 18 | 19 | # BEX related directories and files 20 | /src-bex/www 21 | /src-bex/js/core 22 | 23 | # Log files 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # Editor directories and files 29 | .idea 30 | .vscode 31 | *.suo 32 | *.ntvs* 33 | *.njsproj 34 | *.sln 35 | -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | plugins: [ 5 | // to edit target browsers: use "browserslist" field in package.json 6 | require('autoprefixer') 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Mayank Patel 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # My Profile (mayank-profile) 2 | 3 | My Profile 4 | 5 | ## Site: [https://mayank-patel.netlify.app/#/](https://mayank-patel.netlify.app/#/) 6 | 7 | # Support 8 | 9 | If this helped you, you can contribute to this project by supporting me: 10 | 11 | ### [💜 Support my open-source work on GitHub](https://github.com/sponsors/mayank091193) 12 | 13 | Please check out my sponsor page. 14 | 15 | (GitHub currently **doubles your support**! So if you support me with $5/mo, I will get $10 instead! 😉) 16 | 17 | Thank you very much!! 18 | 19 | ## Resources used 20 | * [Quasar Framework](https://quasar.dev/) 21 | * [Vue.js](https://vuejs.org/) 22 | 23 | 24 | ## Installation 25 | 26 | * **Clone the repository** 27 | 28 | ``` 29 | git clone https://github.com/mayank091193/mayank-profile.git 30 | ``` 31 | 32 | ## Install the dependencies 33 | ```bash 34 | cd mayank-profile 35 | npm install 36 | ``` 37 | 38 | 39 | ### Start the app in development mode (hot-code reloading, error reporting, etc.) 40 | ```bash 41 | quasar dev 42 | ``` 43 | 44 | 45 | ### Build the app for production 46 | ```bash 47 | quasar build 48 | ``` 49 | 50 | Do reach out to me at "mayank091193@gmail.com" for queries. 51 | 52 | ## Screens UI 53 | **Home** 54 |

55 | 56 | Home 58 | 59 |

60 | 61 | **Projects** 62 |

63 | 64 | Projects 66 | 67 |

68 | 69 | **Sketches** 70 |

71 | 72 | Sketches 74 | 75 |

76 | 77 | 78 | ### Customize the configuration 79 | See [Configuring quasar.conf.js](https://quasar.dev/quasar-cli/quasar-conf-js). 80 | 81 | 82 | ## License 83 | 84 | [MIT](http://opensource.org/licenses/MIT) 85 | -------------------------------------------------------------------------------- /assets/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/assets/homepage.png -------------------------------------------------------------------------------- /assets/projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/assets/projects.png -------------------------------------------------------------------------------- /assets/sketches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/assets/sketches.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = { 3 | presets: [ 4 | '@quasar/babel-preset-app' 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "paths": { 5 | "src/*": [ 6 | "src/*" 7 | ], 8 | "app/*": [ 9 | "*" 10 | ], 11 | "components/*": [ 12 | "src/components/*" 13 | ], 14 | "layouts/*": [ 15 | "src/layouts/*" 16 | ], 17 | "pages/*": [ 18 | "src/pages/*" 19 | ], 20 | "assets/*": [ 21 | "src/assets/*" 22 | ], 23 | "boot/*": [ 24 | "src/boot/*" 25 | ], 26 | "vue$": [ 27 | "node_modules/vue/dist/vue.esm.js" 28 | ] 29 | } 30 | }, 31 | "exclude": [ 32 | "dist", 33 | ".quasar", 34 | "node_modules" 35 | ] 36 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mayank-profile", 3 | "version": "0.0.1", 4 | "description": "My Profile", 5 | "productName": "My Profile", 6 | "cordovaId": "org.cordova.quasar.app", 7 | "capacitorId": "", 8 | "author": "mayank091193", 9 | "private": true, 10 | "scripts": { 11 | "test": "echo \"No test specified\" && exit 0" 12 | }, 13 | "dependencies": { 14 | "@quasar/extras": "^1.0.0", 15 | "quasar": "^1.0.0", 16 | "vue-i18n": "^8.0.0" 17 | }, 18 | "devDependencies": { 19 | "@quasar/app": "^1.0.0", 20 | "@quasar/quasar-app-extension-qribbon": "^1.0.0-beta.14" 21 | }, 22 | "engines": { 23 | "node": ">= 10.18.1", 24 | "npm": ">= 6.13.4", 25 | "yarn": ">= 1.21.1" 26 | }, 27 | "browserslist": [ 28 | "last 1 version, not dead, ie >= 11" 29 | ] 30 | } 31 | -------------------------------------------------------------------------------- /quasar.conf.js: -------------------------------------------------------------------------------- 1 | /* 2 | * This file runs in a Node context (it's NOT transpiled by Babel), so use only 3 | * the ES6 features that are supported by your Node version. https://node.green/ 4 | */ 5 | 6 | // Configuration for your app 7 | // https://quasar.dev/quasar-cli/quasar-conf-js 8 | 9 | module.exports = function (/* ctx */) { 10 | return { 11 | // app boot file (/src/boot) 12 | // --> boot files are part of "main.js" 13 | // https://quasar.dev/quasar-cli/cli-documentation/boot-files 14 | boot: [ 15 | 16 | 'i18n', 17 | ], 18 | 19 | // https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-css 20 | css: [ 21 | 'app.sass' 22 | ], 23 | 24 | // https://github.com/quasarframework/quasar/tree/dev/extras 25 | extras: [ 26 | // 'ionicons-v4', 27 | // 'mdi-v5', 28 | 'fontawesome-v5', 29 | // 'eva-icons', 30 | // 'themify', 31 | // 'line-awesome', 32 | // 'roboto-font-latin-ext', // this or either 'roboto-font', NEVER both! 33 | 34 | 'roboto-font', // optional, you are not bound to it 35 | 'material-icons', // optional, you are not bound to it 36 | ], 37 | 38 | // https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-framework 39 | framework: { 40 | iconSet: 'material-icons', // Quasar icon set 41 | lang: 'en-us', // Quasar language pack 42 | 43 | // Possible values for "all": 44 | // * 'auto' - Auto-import needed Quasar components & directives 45 | // (slightly higher compile time; next to minimum bundle size; most convenient) 46 | // * false - Manually specify what to import 47 | // (fastest compile time; minimum bundle size; most tedious) 48 | // * true - Import everything from Quasar 49 | // (not treeshaking Quasar; biggest bundle size; convenient) 50 | all: 'auto', 51 | 52 | components: [], 53 | directives: [], 54 | 55 | // Quasar plugins 56 | plugins: [] 57 | }, 58 | 59 | // https://quasar.dev/quasar-cli/cli-documentation/supporting-ie 60 | supportIE: true, 61 | 62 | // https://quasar.dev/quasar-cli/cli-documentation/supporting-ts 63 | supportTS: false, 64 | 65 | // https://quasar.dev/quasar-cli/cli-documentation/prefetch-feature 66 | // preFetch: true 67 | 68 | // Full list of options: https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-build 69 | build: { 70 | vueRouterMode: 'hash', // available values: 'hash', 'history' 71 | 72 | // rtl: false, // https://quasar.dev/options/rtl-support 73 | // preloadChunks: true, 74 | // showProgress: false, 75 | // gzip: true, 76 | // analyze: true, 77 | 78 | // Options below are automatically set depending on the env, set them if you want to override 79 | // extractCSS: false, 80 | 81 | // https://quasar.dev/quasar-cli/cli-documentation/handling-webpack 82 | extendWebpack (cfg) { 83 | }, 84 | }, 85 | 86 | // Full list of options: https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-devServer 87 | devServer: { 88 | https: false, 89 | port: 8080, 90 | open: true // opens browser window automatically 91 | }, 92 | 93 | // animations: 'all', // --- includes all animations 94 | // https://quasar.dev/options/animations 95 | animations: [], 96 | 97 | // https://quasar.dev/quasar-cli/developing-ssr/configuring-ssr 98 | ssr: { 99 | pwa: false 100 | }, 101 | 102 | // https://quasar.dev/quasar-cli/developing-pwa/configuring-pwa 103 | pwa: { 104 | workboxPluginMode: 'GenerateSW', // 'GenerateSW' or 'InjectManifest' 105 | workboxOptions: {}, // only for GenerateSW 106 | manifest: { 107 | name: 'My Profile', 108 | short_name: 'My Profile', 109 | description: 'My Profile', 110 | display: 'standalone', 111 | orientation: 'portrait', 112 | background_color: '#ffffff', 113 | theme_color: '#027be3', 114 | icons: [ 115 | { 116 | src: 'statics/icons/icon-128x128.png', 117 | sizes: '128x128', 118 | type: 'image/png' 119 | }, 120 | { 121 | src: 'statics/icons/icon-192x192.png', 122 | sizes: '192x192', 123 | type: 'image/png' 124 | }, 125 | { 126 | src: 'statics/icons/icon-256x256.png', 127 | sizes: '256x256', 128 | type: 'image/png' 129 | }, 130 | { 131 | src: 'statics/icons/icon-384x384.png', 132 | sizes: '384x384', 133 | type: 'image/png' 134 | }, 135 | { 136 | src: 'statics/icons/icon-512x512.png', 137 | sizes: '512x512', 138 | type: 'image/png' 139 | } 140 | ] 141 | } 142 | }, 143 | 144 | // Full list of options: https://quasar.dev/quasar-cli/developing-cordova-apps/configuring-cordova 145 | cordova: { 146 | // noIosLegacyBuildFlag: true, // uncomment only if you know what you are doing 147 | id: 'org.cordova.quasar.app' 148 | }, 149 | 150 | // Full list of options: https://quasar.dev/quasar-cli/developing-capacitor-apps/configuring-capacitor 151 | capacitor: { 152 | hideSplashscreen: true 153 | }, 154 | 155 | // Full list of options: https://quasar.dev/quasar-cli/developing-electron-apps/configuring-electron 156 | electron: { 157 | bundler: 'packager', // 'packager' or 'builder' 158 | 159 | packager: { 160 | // https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#options 161 | 162 | // OS X / Mac App Store 163 | // appBundleId: '', 164 | // appCategoryType: '', 165 | // osxSign: '', 166 | // protocol: 'myapp://path', 167 | 168 | // Windows only 169 | // win32metadata: { ... } 170 | }, 171 | 172 | builder: { 173 | // https://www.electron.build/configuration/configuration 174 | 175 | appId: 'mayank-profile' 176 | }, 177 | 178 | // More info: https://quasar.dev/quasar-cli/developing-electron-apps/node-integration 179 | nodeIntegration: true, 180 | 181 | extendWebpack (/* cfg */) { 182 | // do something with Electron main process Webpack cfg 183 | // chainWebpack also available besides this extendWebpack 184 | } 185 | } 186 | } 187 | } 188 | -------------------------------------------------------------------------------- /quasar.extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "@quasar/qribbon": {} 3 | } -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | -------------------------------------------------------------------------------- /src/assets/quasar-logo-full.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 43 | 45 | 46 | 48 | image/svg+xml 49 | 51 | 52 | 53 | 54 | 55 | 60 | 63 | 66 | 69 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 105 | 106 | 107 | 113 | 118 | 126 | 133 | 142 | 151 | 160 | 169 | 178 | 187 | 188 | 189 | 190 | 191 | 192 | -------------------------------------------------------------------------------- /src/assets/sad.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/boot/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/boot/.gitkeep -------------------------------------------------------------------------------- /src/boot/i18n.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import VueI18n from 'vue-i18n' 3 | import messages from 'src/i18n' 4 | 5 | Vue.use(VueI18n) 6 | 7 | const i18n = new VueI18n({ 8 | locale: 'en-us', 9 | fallbackLocale: 'en-us', 10 | messages 11 | }) 12 | 13 | export default ({ app }) => { 14 | // Set i18n instance on app 15 | app.i18n = i18n 16 | } 17 | 18 | export { i18n } 19 | -------------------------------------------------------------------------------- /src/components/EssentialLink.vue: -------------------------------------------------------------------------------- 1 | 23 | 24 | 50 | -------------------------------------------------------------------------------- /src/css/app.sass: -------------------------------------------------------------------------------- 1 | // app global css in Sass form 2 | @font-face 3 | font-family: "Lobster script=latin rev=1"; 4 | src: url(./fonts/Lobster-Regular.ttf); 5 | 6 | .my-font 7 | font-family: 'Lobster script=latin rev=1'; 8 | 9 | -------------------------------------------------------------------------------- /src/css/fonts/Lobster-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/css/fonts/Lobster-Regular.ttf -------------------------------------------------------------------------------- /src/css/quasar.variables.sass: -------------------------------------------------------------------------------- 1 | // Quasar Sass (& SCSS) Variables 2 | // -------------------------------------------------- 3 | // To customize the look and feel of this app, you can override 4 | // the Sass/SCSS variables found in Quasar's source Sass/SCSS files. 5 | 6 | // Check documentation for full list of Quasar variables 7 | 8 | // Your own variables (that are declared here) and Quasar's own 9 | // ones will be available out of the box in your .vue/.scss/.sass files 10 | 11 | // It's highly recommended to change the default colors 12 | // to match your app's branding. 13 | // Tip: Use the "Theme Builder" on Quasar's documentation website. 14 | 15 | $primary : #1976D2 16 | $secondary : #26A69A 17 | $accent : #9C27B0 18 | 19 | $dark : #1D1D1D 20 | 21 | $positive : #21BA45 22 | $negative : #C10015 23 | $info : #31CCEC 24 | $warning : #F2C037 25 | -------------------------------------------------------------------------------- /src/i18n/en-us/index.js: -------------------------------------------------------------------------------- 1 | // This is just an example, 2 | // so you can safely delete all default props below 3 | 4 | export default { 5 | failed: 'Action failed', 6 | success: 'Action was successful' 7 | } 8 | -------------------------------------------------------------------------------- /src/i18n/index.js: -------------------------------------------------------------------------------- 1 | import enUS from './en-us' 2 | 3 | export default { 4 | 'en-us': enUS 5 | } 6 | -------------------------------------------------------------------------------- /src/index.template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <%= htmlWebpackPlugin.options.productName %> 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | -------------------------------------------------------------------------------- /src/layouts/MainLayout.vue: -------------------------------------------------------------------------------- 1 | 48 | 49 | 110 | -------------------------------------------------------------------------------- /src/pages/Error404.vue: -------------------------------------------------------------------------------- 1 | 20 | 21 | 26 | -------------------------------------------------------------------------------- /src/pages/Index.vue: -------------------------------------------------------------------------------- 1 | 493 | 494 | 532 | 533 | 615 | -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import VueRouter from 'vue-router' 3 | 4 | import routes from './routes' 5 | 6 | Vue.use(VueRouter) 7 | 8 | /* 9 | * If not building with SSR mode, you can 10 | * directly export the Router instantiation; 11 | * 12 | * The function below can be async too; either use 13 | * async/await or return a Promise which resolves 14 | * with the Router instance. 15 | */ 16 | 17 | export default function (/* { store, ssrContext } */) { 18 | const Router = new VueRouter({ 19 | scrollBehavior: () => ({ x: 0, y: 0 }), 20 | routes, 21 | 22 | // Leave these as they are and change in quasar.conf.js instead! 23 | // quasar.conf.js -> build -> vueRouterMode 24 | // quasar.conf.js -> build -> publicPath 25 | mode: process.env.VUE_ROUTER_MODE, 26 | base: process.env.VUE_ROUTER_BASE 27 | }) 28 | 29 | return Router 30 | } 31 | -------------------------------------------------------------------------------- /src/router/routes.js: -------------------------------------------------------------------------------- 1 | 2 | const routes = [ 3 | { 4 | path: '/', 5 | component: () => import('pages/Index.vue') 6 | } 7 | ] 8 | 9 | // Always leave this as last one 10 | if (process.env.MODE !== 'ssr') { 11 | routes.push({ 12 | path: '*', 13 | component: () => import('pages/Error404.vue') 14 | }) 15 | } 16 | 17 | export default routes 18 | -------------------------------------------------------------------------------- /src/statics/icons/favicon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/icons/favicon-128x128.png -------------------------------------------------------------------------------- /src/statics/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/icons/favicon-16x16.png -------------------------------------------------------------------------------- /src/statics/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/icons/favicon-32x32.png -------------------------------------------------------------------------------- /src/statics/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/icons/favicon-96x96.png -------------------------------------------------------------------------------- /src/statics/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/icons/favicon.ico -------------------------------------------------------------------------------- /src/statics/images/admin_crm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/images/admin_crm.png -------------------------------------------------------------------------------- /src/statics/images/company_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/images/company_profile.png -------------------------------------------------------------------------------- /src/statics/images/contact_us.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/images/contact_us.jpg -------------------------------------------------------------------------------- /src/statics/images/cooltab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/images/cooltab.jpg -------------------------------------------------------------------------------- /src/statics/images/my_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/images/my_1.jpg -------------------------------------------------------------------------------- /src/statics/images/my_1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/images/my_1_2.jpg -------------------------------------------------------------------------------- /src/statics/images/my_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/images/my_2.jpg -------------------------------------------------------------------------------- /src/statics/images/quasar_draggable_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/images/quasar_draggable_tree.png -------------------------------------------------------------------------------- /src/statics/images/quasar_scrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/images/quasar_scrum.png -------------------------------------------------------------------------------- /src/statics/images/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/images/ribbon.png -------------------------------------------------------------------------------- /src/statics/images/sketch_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/images/sketch_1.jpg -------------------------------------------------------------------------------- /src/statics/images/sketch_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank091193/mayank-profile/42330074f747282e64ed9b21da22c6dcc8560d20/src/statics/images/sketch_2.jpg --------------------------------------------------------------------------------