---
title: The Mountains Website
description: A website about the most iconic mountains in the world.
---
::my-vue-hero-component{orientation="horizontal"}
#title
Welcome to the Mountains Website.
#description
This is a description of the Mountains Website.
::
This is a paragraph with **bold** and _italic_ text.
<script setup lang="ts">
const { data } = await useAsyncData('home', () => {
return queryCollection('content').path('/').first()
})
useSeoMeta({
title: data.value?.title,
description: data.value?.description
})
</script>
<template>
<ContentRenderer :value="data" />
</template>
Combine file-based simplicity with Vue component power. Build content-rich websites, from documentation pages to complex applications.