You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
497 B
Vue

<script setup lang="ts">
import { useData } from 'vitepress'
import HomeHero from './HomeHero.vue'
import Features from './Features.vue';
const { frontmatter: fm } = useData()
</script>
<template>
<template v-if="fm.main">
<div class="container">
<HomeHero :data="fm.main" />
<Features :features="fm.main.features" />
</div>
</template>
</template>
<style scoped>
.container {
display: flex;
flex-direction: column;
margin: 0 auto;
max-width: 1340px;
}
</style>