Dominik Milacher 73083ded58
Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 1m7s
Overhaul content management
2025-10-22 19:31:38 +02:00

55 lines
1.5 KiB
Vue

<!--<script setup lang="ts">-->
<!--/* Inject the external assets into <head> */-->
<!--useHead({-->
<!-- link: [-->
<!-- {-->
<!-- rel: 'stylesheet',-->
<!-- href: 'https://mainframe.capcorn.net/ressourcen/newUI/css/capcorn.css'-->
<!-- }-->
<!-- ],-->
<!-- script: [-->
<!-- {-->
<!-- src: 'https://mainframe.capcorn.net/ressourcen/newUI/js/jquery.js',-->
<!-- tagPosition: 'bodyClose', // load at the end of <body>-->
<!-- defer: true // optional-->
<!-- },-->
<!-- {-->
<!-- src: 'https://mainframe.capcorn.net/ressourcen/newUI/js/capcorn.js',-->
<!-- tagPosition: 'bodyClose',-->
<!-- defer: true-->
<!-- }-->
<!-- ]-->
<!--})-->
<!--</script>-->
<template>
<div>
<AppFlatSection>
<div class="flex flex-col items-center justify-center">
<span class="text-lg text-neutral-600">{{l.coming}}</span>
</div>
<!-- &lt;!&ndash; SSR-safe: iframe appears only in the browser &ndash;&gt;-->
<!-- &lt;!&ndash; <ClientOnly>-->
<!-- <iframe-->
<!-- id="iframeCapCorn"-->
<!-- src="https://www.capcorn.net/MasterReq?MB=1487&FL=17&LG=0"-->
<!-- frameborder="0"-->
<!-- width="100%"-->
<!-- scrolling="auto"-->
<!-- />-->
<!-- </ClientOnly> &ndash;&gt;-->
</AppFlatSection>
</div>
</template>
<script setup lang="ts">
useSeoLinking()
const {l} = useContentInjected()
useSeoMeta({
title: () => l.value.meta.title,
description: () => l.value.meta.description,
})
</script>