Skip to content

Commit

Permalink
fix: change h1 with my name to span
Browse files Browse the repository at this point in the history
  • Loading branch information
pablosirera committed Feb 28, 2021
1 parent 74f88a6 commit abd2558
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
11 changes: 6 additions & 5 deletions components/ui/TheHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="container flex justify-between items-center">
<nuxt-link to="/" class="flex items-center">
<Logo />
<h1 class="secondary-title ml-4">Pablo Sirera</h1>
<span class="secondary-title ml-4">Pablo Sirera</span>
</nuxt-link>
<div class="flex items-center">
<ul class="text-center hidden sm:flex sm:items-center">
Expand All @@ -13,6 +13,7 @@
{{ link.name }}
</nuxt-link>
</li>
<!-- TODO: discomment when contact me works fine -->
<ButtonLink type="outlined" path="/contact-me">Contáctame</ButtonLink>
</ul>
<Menu class="block sm:hidden" />
Expand All @@ -32,10 +33,10 @@ export default {
Logo,
ButtonLink,
},
computed: {
links() {
return NAV_LINKS
},
data() {
return {
links: NAV_LINKS,
}
},
}
</script>
Expand Down
5 changes: 0 additions & 5 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0"
}
}
}

0 comments on commit abd2558

Please sign in to comment.