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

24 lines
370 B
Vue

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