├── vue.config.js
├── babel.config.js
├── src
├── views
│ ├── About.vue
│ └── Home.vue
├── assets
│ ├── logo.png
│ └── logo.svg
├── store
│ └── index.js
├── App.vue
├── main.js
├── plugins
│ └── vuetify.js
├── router
│ └── index.js
└── components
│ ├── NavBar.vue
│ ├── Footer.vue
│ └── HelloWorld.vue
├── public
├── 1.png
├── 2.png
├── 3.png
├── 4.png
├── 5.png
├── 6.png
├── favicon.ico
└── index.html
├── .gitignore
├── README.md
└── package.json
/vue.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | transpileDependencies: [
3 | 'vuetify'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | '@vue/cli-plugin-babel/preset'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/src/views/About.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
This is an about page
4 |
5 |
6 |
--------------------------------------------------------------------------------
/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zakaria-29-dev/Vuejs---Vuetify-How-To-Build-A-Personal-Portfolio-Website-Using-HTML-CSS-JS-Portfolio-Website/HEAD/src/assets/logo.png
--------------------------------------------------------------------------------
/src/store/index.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import Vuex from 'vuex'
3 |
4 | Vue.use(Vuex)
5 |
6 | export default new Vuex.Store({
7 | state: {
8 | },
9 | mutations: {
10 | },
11 | actions: {
12 | },
13 | modules: {
14 | }
15 | })
16 |
--------------------------------------------------------------------------------
/src/App.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
19 |
--------------------------------------------------------------------------------
/src/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './App.vue'
3 | import router from './router'
4 | import store from './store'
5 | import vuetify from './plugins/vuetify'
6 |
7 | Vue.config.productionTip = false
8 |
9 | new Vue({
10 | router,
11 | store,
12 | vuetify,
13 | render: h => h(App)
14 | }).$mount('#app')
15 |
--------------------------------------------------------------------------------
/.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 |
--------------------------------------------------------------------------------
/src/plugins/vuetify.js:
--------------------------------------------------------------------------------
1 | import '@fortawesome/fontawesome-free/css/all.css'
2 | import 'material-design-icons-iconfont/dist/material-design-icons.css'
3 | import Vue from 'vue';
4 | import Vuetify from 'vuetify/lib/framework';
5 |
6 | Vue.use(Vuetify);
7 |
8 | export default new Vuetify({
9 | icons: {
10 | iconfont: 'fa' || 'md' || 'mdi'
11 | },
12 | theme: {
13 | themes: {
14 | dark: {
15 | background: '#111111'
16 | }
17 | }
18 | }
19 | });
--------------------------------------------------------------------------------
/src/assets/logo.svg:
--------------------------------------------------------------------------------
1 | Artboard 46
2 |
--------------------------------------------------------------------------------
/src/router/index.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import VueRouter from 'vue-router'
3 | import Home from '../views/Home.vue'
4 |
5 | Vue.use(VueRouter)
6 |
7 | const routes = [
8 | {
9 | path: '/',
10 | name: 'Home',
11 | component: Home
12 | },
13 | {
14 | path: '/about',
15 | name: 'About',
16 | // route level code-splitting
17 | // this generates a separate chunk (about.[hash].js) for this route
18 | // which is lazy-loaded when the route is visited.
19 | component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
20 | }
21 | ]
22 |
23 | const router = new VueRouter({
24 | mode: 'history',
25 | base: process.env.BASE_URL,
26 | routes
27 | })
28 |
29 | export default router
30 |
--------------------------------------------------------------------------------
/src/components/NavBar.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | fas fa-dragon
5 |
6 |
7 |
8 | Home
9 | Project
10 | about
11 | contact
12 |
13 |
14 |
15 |
25 |
26 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | <%= htmlWebpackPlugin.options.title %>
9 |
10 |
11 |
12 |
13 |
14 | We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/src/components/Footer.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
11 |
12 |
13 | fas fa-dragon
14 |
15 |
16 |
17 |
18 |
19 |
20 |
26 |
27 | {{ icon }}
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | mdi-heart
36 |
37 | Created by AAE IdeaPro
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
48 |
49 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/src/components/HelloWorld.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
11 |
12 |
13 |
14 |
15 | Welcome to Vuetify
16 |
17 |
18 |
19 | For help and collaboration with other Vuetify developers,
20 | please join our online
21 | Discord Community
25 |
26 |
27 |
28 |
32 |
33 | What's next?
34 |
35 |
36 |
37 |
44 | {{ next.text }}
45 |
46 |
47 |
48 |
49 |
53 |
54 | Important Links
55 |
56 |
57 |
58 |
65 | {{ link.text }}
66 |
67 |
68 |
69 |
70 |
74 |
75 | Ecosystem
76 |
77 |
78 |
79 |
86 | {{ eco.text }}
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
152 |
--------------------------------------------------------------------------------
/src/views/Home.vue:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | Hello Im Agetha
14 | Visual Designer
15 |
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 |
21 | about me
22 |
23 |
24 |
25 |
26 |
27 |
28 |
mdi-palette-swatch
31 |
UI Design
32 |
33 | Lorem, ipsum dolor sit amet consectetur adipisicing
34 | elit.
35 |
36 |
37 | know more
38 | mdi-arrow-right
39 |
40 |
41 |
42 |
mdi-shopping
45 |
Product Design
46 |
47 | Lorem, ipsum dolor sit amet consectetur adipisicing
48 | elit.
49 |
50 |
51 | know more
52 | mdi-arrow-right
53 |
54 |
55 |
56 |
mdi-book-open-page-variant
59 |
Branding
60 |
61 | Lorem, ipsum dolor sit amet consectetur adipisicing
62 | elit.
63 |
64 |
65 | know more
66 | mdi-arrow-right
67 |
68 |
69 |
70 |
71 |
72 |
12
73 | Years Experience
74 |
75 |
76 |
77 |
78 |
82 |
83 |
84 |
85 |
122+
86 |
Completed Projects
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
98 |
99 |
100 |
101 |
10
102 |
Achievements
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 | FEATURED PROJECTS
113 | Lorem ipsum dolor Lorem ipsum dolor
114 |
115 |
116 | View All
117 |
118 |
119 |
126 |
127 |
128 |
129 |
130 |
137 |
138 |
139 |
140 |
141 | The Vintage
143 |
144 |
145 | know more
146 | mdi-arrow-right
147 |
148 |
149 |
150 | Foodasa
151 |
152 |
153 | know more
154 | mdi-arrow-right
155 |
156 |
157 |
158 |
165 |
166 |
167 |
168 |
169 |
176 |
177 |
178 |
179 |
180 | AAE IdeaPro
182 |
183 |
184 | know more
185 | mdi-arrow-right
186 |
187 |
188 |
189 | Mozaik
190 |
191 | know more
192 | mdi-arrow-right
193 |
194 |
195 |
196 |
216 |
217 |
227 | Home
228 | Project
229 | about
230 | contact
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
255 |
--------------------------------------------------------------------------------