Create Hero component

This commit is contained in:
2020-10-26 15:39:43 +01:00
parent d533426d2d
commit ae922f7d7e
3 changed files with 235 additions and 85 deletions

32
components/Hero.vue Normal file
View File

@@ -0,0 +1,32 @@
<template>
<div class="rounded-3xl bg-white w-1/2 mx-auto p-6 shadow-xl text-center">
<Logo />
<h1 class="font-mono text-2xl">
wazo-lab.io
</h1>
<div class="mt-4">
<a
href="#projects"
target="_self"
rel="noopener noreferrer"
class="button--green"
>
Projects
</a>
<a
href="#contact-me"
target="_self"
rel="noopener noreferrer"
class="button--grey"
>
Contact Me
</a>
</div>
</div>
</template>
<script>
export default {};
</script>
<style></style>

File diff suppressed because one or more lines are too long