Skip to content

Commit

Permalink
Initialize all pages
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoLnx committed Feb 23, 2024
1 parent 0e60624 commit 1c121b4
Show file tree
Hide file tree
Showing 10 changed files with 56 additions and 39 deletions.
4 changes: 2 additions & 2 deletions src/pages/_layout/MainNavbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
Skills
</NavLink>

<NavLink href="/work-history" class="navbar-item">
Work History
<NavLink href="/work-experience" class="navbar-item">
Work Experience
</NavLink>

<NavLink href="/resume" class="navbar-item">
Expand Down
8 changes: 8 additions & 0 deletions src/pages/about-me/+Page.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<template>
<h1 class="title">
About Me
</h1>
<h2 class="subtitle">
TODO
</h2>
</template>
13 changes: 0 additions & 13 deletions src/pages/about/+Page.vue

This file was deleted.

8 changes: 8 additions & 0 deletions src/pages/contact/+Page.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<template>
<h1 class="title">
Contact
</h1>
<h2 class="subtitle">
TODO
</h2>
</template>
16 changes: 6 additions & 10 deletions src/pages/index/+Page.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
<template>
<h1>Welcome</h1>
This page is:
<ul>
<li>Rendered to HTML.</li>
<li>Interactive. <Counter /></li>
</ul>
<h1 class="title">
Overview
</h1>
<h2 class="subtitle">
TODO
</h2>
</template>

<script setup>
import Counter from './Counter.vue';
</script>
14 changes: 0 additions & 14 deletions src/pages/index/Counter.vue

This file was deleted.

8 changes: 8 additions & 0 deletions src/pages/portfolio/+Page.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<template>
<h1 class="title">
Portfolio
</h1>
<h2 class="subtitle">
TODO
</h2>
</template>
8 changes: 8 additions & 0 deletions src/pages/resume/+Page.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<template>
<h1 class="title">
Resume
</h1>
<h2 class="subtitle">
TODO
</h2>
</template>
8 changes: 8 additions & 0 deletions src/pages/skills/+Page.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<template>
<h1 class="title">
Skills
</h1>
<h2 class="subtitle">
TODO
</h2>
</template>
8 changes: 8 additions & 0 deletions src/pages/work-experience/+Page.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<template>
<h1 class="title">
Work Experience
</h1>
<h2 class="subtitle">
TODO
</h2>
</template>

0 comments on commit 1c121b4

Please sign in to comment.