15 lines
336 B
Vue
15 lines
336 B
Vue
<script setup lang="ts">
|
|
import type { NodePageFragment } from "#graphql/operations";
|
|
|
|
defineProps<NodePageFragment>();
|
|
</script>
|
|
|
|
<template>
|
|
<div id="node-page">
|
|
<h1 v-if="!isFrontPage" class="text-4xl font-bold">
|
|
{{ title }}
|
|
</h1>
|
|
<BuilderSections :sections="groupPostPage?.sections || []" />
|
|
</div>
|
|
</template>
|