Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
# Clean Vue.js & TailwindCSS Portfolio Template

## Project setup

```
npm install
```

### Compiles and hot-reloads for development

```
npm run serve
```

### Compiles and minifies for production

```
npm run build
```

### Lints and fixes files

```
npm run lint
```

### Customize configuration

See [Configuration Reference](https://cli.vuejs.org/config/).
6 changes: 2 additions & 4 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
presets: ['@vue/cli-plugin-babel/preset'],
};
10 changes: 5 additions & 5 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {}
}
}
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
Binary file removed public/favicon.ico
Binary file not shown.
Binary file added public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 18 additions & 14 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" href="./favicon.png" />
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body>
<noscript>
<strong
>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't
work properly without JavaScript enabled. Please enable it to
continue.</strong
>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
57 changes: 28 additions & 29 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,40 +1,39 @@
<template>
<!-- Header Start -->
<Header></Header>
<!-- Header Start -->
<Header></Header>

<!-- Render Active Component Contents Start -->
<router-view/>

<!-- Footer Start -->
<Footer></Footer>
<!-- Render Active Component Contents Start -->
<router-view />

<!-- Footer Start -->
<Footer></Footer>
</template>

<script>
import feather from 'feather-icons'
import Header from './components/shared/Header';
import Footer from './components/shared/Footer';
import feather from 'feather-icons';
import Header from './components/shared/Header';
import Footer from './components/shared/Footer';

export default {
components: {
Header,
Footer
},
mounted() {
feather.replace();
},
updated() {
feather.replace();
}
}
export default {
components: {
Header,
Footer,
},
mounted() {
feather.replace();
},
updated() {
feather.replace();
},
};
</script>

<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
</style>
4 changes: 2 additions & 2 deletions src/assets/css/app.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/***
/*==
* Vuejs & TailwindCSS Portfolio Main Styling CSS File
* Powered by: @NangialaiStoman
*/
*/
1 change: 1 addition & 0 deletions src/assets/images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 0 additions & 24 deletions src/components/About.vue

This file was deleted.

202 changes: 0 additions & 202 deletions src/components/Home.vue

This file was deleted.

Loading