1
0
Fork 0
moritzruth.de/pages/index.vue
2019-11-30 14:57:43 +01:00

26 lines
424 B
Vue

<template>
<main class="index-page">
<div class="index-page__hero">
<AnimatedLogo/>
</div>
</main>
</template>
<style>
.index-page__hero {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
</style>
<script>
import AnimatedLogo from "../components/AnimatedLogo";
export default {
name: "IndexPage",
components: { AnimatedLogo }
};
</script>