Skip to content

Commit

Permalink
Changed router-links
Browse files Browse the repository at this point in the history
  • Loading branch information
ecpieritz authored Jun 8, 2023
1 parent 26f2fa7 commit f3cace0
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 8 deletions.
29 changes: 29 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"bootstrap": "^5.3.0",
"core-js": "^3.8.3",
"vue": "^3.2.13",
"vue-router": "^4.0.3",
Expand Down
1 change: 0 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
<router-link to="/about">About</router-link>
<router-link to="/services">Services</router-link>
<router-link to="/prices">Prices</router-link>
<router-link to="/projects">Projects</router-link>
<router-link to="/team">Team</router-link>
<router-link to="/contact">Contact</router-link>
</nav>
Expand Down
2 changes: 1 addition & 1 deletion src/components/home/work.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div class="col-md-4 id-home__work__card">
<h3>Project Plan</h3>
<p>There are many variations of the passages of lorem Ipsum from available, majority.</p>
<router-link class="btn text-btn" to="/projects">Read More <font-awesome-icon :icon="['fas', 'arrow-right']" /></router-link>
<router-link class="btn text-btn" to="/services">Read More <font-awesome-icon :icon="['fas', 'arrow-right']" /></router-link>
</div>
</div>
</div>
Expand Down
6 changes: 0 additions & 6 deletions src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import HomeView from '../views/HomeView.vue'
import AboutView from '../views/AboutView.vue'
import ServicesView from '../views/ServicesView.vue'
import PricesView from '../views/PricesView.vue'
import ProjectsView from '../views/ProjectsView.vue'
import TeamView from '../views/TeamView.vue'
import ContactView from '../views/ContactView.vue'

Expand All @@ -28,11 +27,6 @@ const routes = [
name: 'prices',
component: PricesView
},
{
path: '/projects',
name: 'projects',
component: ProjectsView
},
{
path: '/team',
name: 'team',
Expand Down

0 comments on commit f3cace0

Please sign in to comment.