Skip to content

Commit c57eabb

Browse files
authored
Merge pull request #6 from NangialaiStoman/pages
Added Pages & More Design Changes
2 parents 1040cc4 + 050ce23 commit c57eabb

31 files changed

+842
-514
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,29 @@
11
# Clean Vue.js & TailwindCSS Portfolio Template
22

33
## Project setup
4+
45
```
56
npm install
67
```
78

89
### Compiles and hot-reloads for development
10+
911
```
1012
npm run serve
1113
```
1214

1315
### Compiles and minifies for production
16+
1417
```
1518
npm run build
1619
```
1720

1821
### Lints and fixes files
22+
1923
```
2024
npm run lint
2125
```
2226

2327
### Customize configuration
28+
2429
See [Configuration Reference](https://cli.vuejs.org/config/).

babel.config.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
module.exports = {
2-
presets: [
3-
'@vue/cli-plugin-babel/preset'
4-
]
5-
}
2+
presets: ['@vue/cli-plugin-babel/preset'],
3+
};

postcss.config.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
2-
plugins: {
3-
tailwindcss: {},
4-
autoprefixer: {}
5-
}
6-
}
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
};

public/favicon.ico

-4.19 KB
Binary file not shown.

public/favicon.png

1.42 KB
Loading

public/index.html

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
<!DOCTYPE html>
22
<html lang="">
3-
<head>
4-
<meta charset="utf-8">
5-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6-
<meta name="viewport" content="width=device-width,initial-scale=1.0">
7-
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
8-
<title><%= htmlWebpackPlugin.options.title %></title>
9-
</head>
10-
<body>
11-
<noscript>
12-
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13-
</noscript>
14-
<div id="app"></div>
15-
<!-- built files will be auto injected -->
16-
</body>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
7+
<link rel="icon" href="./favicon.png" />
8+
<title><%= htmlWebpackPlugin.options.title %></title>
9+
</head>
10+
<body>
11+
<noscript>
12+
<strong
13+
>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't
14+
work properly without JavaScript enabled. Please enable it to
15+
continue.</strong
16+
>
17+
</noscript>
18+
<div id="app"></div>
19+
<!-- built files will be auto injected -->
20+
</body>
1721
</html>

src/App.vue

Lines changed: 28 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,39 @@
11
<template>
2-
<!-- Header Start -->
3-
<Header></Header>
2+
<!-- Header Start -->
3+
<Header></Header>
44

5-
<!-- Render Active Component Contents Start -->
6-
<router-view/>
7-
8-
<!-- Footer Start -->
9-
<Footer></Footer>
5+
<!-- Render Active Component Contents Start -->
6+
<router-view />
107

8+
<!-- Footer Start -->
9+
<Footer></Footer>
1110
</template>
1211

1312
<script>
14-
import feather from 'feather-icons'
15-
import Header from './components/shared/Header';
16-
import Footer from './components/shared/Footer';
13+
import feather from 'feather-icons';
14+
import Header from './components/shared/Header';
15+
import Footer from './components/shared/Footer';
1716
18-
export default {
19-
components: {
20-
Header,
21-
Footer
22-
},
23-
mounted() {
24-
feather.replace();
25-
},
26-
updated() {
27-
feather.replace();
28-
}
29-
}
17+
export default {
18+
components: {
19+
Header,
20+
Footer,
21+
},
22+
mounted() {
23+
feather.replace();
24+
},
25+
updated() {
26+
feather.replace();
27+
},
28+
};
3029
</script>
3130

3231
<style>
33-
#app {
34-
font-family: Avenir, Helvetica, Arial, sans-serif;
35-
-webkit-font-smoothing: antialiased;
36-
-moz-osx-font-smoothing: grayscale;
37-
text-align: center;
38-
color: #2c3e50;
39-
}
32+
#app {
33+
font-family: Avenir, Helvetica, Arial, sans-serif;
34+
-webkit-font-smoothing: antialiased;
35+
-moz-osx-font-smoothing: grayscale;
36+
text-align: center;
37+
color: #2c3e50;
38+
}
4039
</style>

src/assets/css/app.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/***
1+
/*==
22
* Vuejs & TailwindCSS Portfolio Main Styling CSS File
33
* Powered by: @NangialaiStoman
4-
*/
4+
*/

src/assets/images/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

src/components/About.vue

Lines changed: 0 additions & 24 deletions
This file was deleted.

src/components/Home.vue

Lines changed: 0 additions & 202 deletions
This file was deleted.

0 commit comments

Comments
 (0)