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

21 lines
444 B

<template>
<div class="home-container">
<h1 class="home-title">{{ content.home.title }}</h1>
<div class="home-content">
<h2 class="home-subtitle">{{ content.home.subtitle }}</h2>
<p>{{ content.home.description }}</p>
</div>
</div>
</template>
<script setup>
import { content } from '~/config/content'
definePageMeta({
layout: 'default'
})
</script>
<style scoped>
@import '~/assets/css/pages/home.css';
</style>