├── .gitignore ├── README.md ├── babel.config.js ├── package-lock.json ├── package.json ├── public ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ ├── logo.png │ └── logo.svg ├── components │ ├── Footer.vue │ ├── HelloWorld.vue │ └── NavBar.vue ├── main.js ├── plugins │ └── vuetify.js ├── router │ └── index.js ├── store │ └── index.js └── views │ ├── About.vue │ └── Home.vue └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | 5 | 6 | # local env files 7 | .env.local 8 | .env.*.local 9 | 10 | # Log files 11 | npm-debug.log* 12 | yarn-debug.log* 13 | yarn-error.log* 14 | pnpm-debug.log* 15 | 16 | # Editor directories and files 17 | .idea 18 | .vscode 19 | *.suo 20 | *.ntvs* 21 | *.njsproj 22 | *.sln 23 | *.sw? 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # portfolio 2 | 3 | ## Project setup 4 | ``` 5 | npm install 6 | ``` 7 | 8 | ### Compiles and hot-reloads for development 9 | ``` 10 | npm run serve 11 | ``` 12 | 13 | ### Compiles and minifies for production 14 | ``` 15 | npm run build 16 | ``` 17 | 18 | ### Lints and fixes files 19 | ``` 20 | npm run lint 21 | ``` 22 | 23 | ### Customize configuration 24 | See [Configuration Reference](https://cli.vuejs.org/config/). 25 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "portfolio", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "serve": "vue-cli-service serve", 7 | "build": "vue-cli-service build", 8 | "lint": "vue-cli-service lint" 9 | }, 10 | "dependencies": { 11 | "core-js": "^3.6.5", 12 | "vue": "^2.6.11", 13 | "vue-router": "^3.2.0", 14 | "vuetify": "^2.4.0", 15 | "vuex": "^3.4.0" 16 | }, 17 | "devDependencies": { 18 | "@fortawesome/fontawesome-free": "^5.15.4", 19 | "@vue/cli-plugin-babel": "~4.5.0", 20 | "@vue/cli-plugin-eslint": "~4.5.0", 21 | "@vue/cli-plugin-router": "~4.5.0", 22 | "@vue/cli-plugin-vuex": "~4.5.0", 23 | "@vue/cli-service": "~4.5.0", 24 | "babel-eslint": "^10.1.0", 25 | "eslint": "^6.7.2", 26 | "eslint-plugin-vue": "^6.2.2", 27 | "material-design-icons-iconfont": "^6.1.1", 28 | "sass": "~1.32.0", 29 | "sass-loader": "^10.0.0", 30 | "vue-cli-plugin-vuetify": "~2.4.5", 31 | "vue-template-compiler": "^2.6.11", 32 | "vuetify-loader": "^1.7.0" 33 | }, 34 | "eslintConfig": { 35 | "root": true, 36 | "env": { 37 | "node": true 38 | }, 39 | "extends": [ 40 | "plugin:vue/essential", 41 | "eslint:recommended" 42 | ], 43 | "parserOptions": { 44 | "parser": "babel-eslint" 45 | }, 46 | "rules": {} 47 | }, 48 | "browserslist": [ 49 | "> 1%", 50 | "last 2 versions", 51 | "not dead" 52 | ] 53 | } 54 | -------------------------------------------------------------------------------- /public/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs---Vuetify-How-To-Build-A-Personal-Portfolio-Website-Using-HTML-CSS-JS-Portfolio-Website/47cacc9e8b07c6d3371df0e8949e1175b4951945/public/1.png -------------------------------------------------------------------------------- /public/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs---Vuetify-How-To-Build-A-Personal-Portfolio-Website-Using-HTML-CSS-JS-Portfolio-Website/47cacc9e8b07c6d3371df0e8949e1175b4951945/public/2.png -------------------------------------------------------------------------------- /public/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs---Vuetify-How-To-Build-A-Personal-Portfolio-Website-Using-HTML-CSS-JS-Portfolio-Website/47cacc9e8b07c6d3371df0e8949e1175b4951945/public/3.png -------------------------------------------------------------------------------- /public/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs---Vuetify-How-To-Build-A-Personal-Portfolio-Website-Using-HTML-CSS-JS-Portfolio-Website/47cacc9e8b07c6d3371df0e8949e1175b4951945/public/4.png -------------------------------------------------------------------------------- /public/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs---Vuetify-How-To-Build-A-Personal-Portfolio-Website-Using-HTML-CSS-JS-Portfolio-Website/47cacc9e8b07c6d3371df0e8949e1175b4951945/public/5.png -------------------------------------------------------------------------------- /public/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs---Vuetify-How-To-Build-A-Personal-Portfolio-Website-Using-HTML-CSS-JS-Portfolio-Website/47cacc9e8b07c6d3371df0e8949e1175b4951945/public/6.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs---Vuetify-How-To-Build-A-Personal-Portfolio-Website-Using-HTML-CSS-JS-Portfolio-Website/47cacc9e8b07c6d3371df0e8949e1175b4951945/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |
19 | For help and collaboration with other Vuetify developers,
20 |
please join our online
21 | Discord Community
25 |
16 | Lorem, ipsum dolor sit amet consectetur adipisicing elit.
17 | Adipisci explicabo, cupiditate necessitatibus iure hic omnis est ab
18 |
19 | At nihil et temporibus ratione!
20 |
33 | Lorem, ipsum dolor sit amet
consectetur adipisicing
34 | elit.
35 |
47 | Lorem, ipsum dolor sit amet
consectetur adipisicing
48 | elit.
49 |
61 | Lorem, ipsum dolor sit amet
consectetur adipisicing
62 | elit.
63 |
Clients
81 |Completed Projects
87 |Years Experience
97 |Achievements
103 |Lorem ipsum dolor Lorem ipsum dolor
114 |
204 | Lorem ipsum dolor sit amet consectetur adipisicing elit.
205 | Eius nesciunt ducimus natus
206 |