mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
Test docs & made the default windows size to be bigger.
This commit is contained in:
parent
d9c6cec16e
commit
23295ff590
9 changed files with 441 additions and 59 deletions
|
@ -1,6 +1,15 @@
|
|||
<script setup lang="ts">
|
||||
const { data: home } = await useAsyncData(() =>
|
||||
queryCollection("content").path("/").first(),
|
||||
);
|
||||
|
||||
useSeoMeta({
|
||||
title: home.value?.title,
|
||||
description: home.value?.description,
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="h-[200px]"></div>
|
||||
<h1 class="text-4xl text-center align-middle">
|
||||
Documentation is currently not available.
|
||||
</h1>
|
||||
<ContentRenderer v-if="home" :value="home" />
|
||||
<div v-else>Home not found</div>
|
||||
</template>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue