mat.services/components/Hero.vue

29 lines
665 B
Vue
Raw Normal View History

2018-02-08 21:21:28 +00:00
<template lang="pug">
section.hero.is-primary.is-bold.is-medium(v-once)
.hero-body
.container
h1.title matthew ess
h2.subtitle software developer, social justice warrior, wannabe artist
.hero-foot
.tabs.is-boxed.is-fullwidth.is-three-quarters
ul.has-text-weight-semibold
li
2018-02-09 18:01:38 +00:00
nuxt-link(to='/') home
2018-02-08 21:21:28 +00:00
li
2018-02-09 18:01:38 +00:00
nuxt-link(to='/projects') projects
2018-02-08 21:21:28 +00:00
li
2018-02-09 18:01:38 +00:00
nuxt-link(to='/resume') resume
2018-02-08 21:21:28 +00:00
li
2018-02-09 18:01:38 +00:00
nuxt-link(to='/blog') blog
2018-02-08 21:21:28 +00:00
</template>
<style lang="sass" scoped>
2018-02-09 01:31:59 +00:00
@import '~bulma/sass/utilities/mixins'
2018-02-08 21:21:28 +00:00
section
margin-bottom: 2rem
2018-02-09 01:31:59 +00:00
+desktop
.is-three-quarters
width: 75%
2018-02-08 21:21:28 +00:00
</style>