wip: refactor sections

This commit is contained in:
2025-09-24 15:14:48 -04:00
parent b2b9b2ba8f
commit 9af11d00cf
9 changed files with 56 additions and 59 deletions

View File

@@ -1,9 +1,10 @@
<script setup lang="ts">
import type { ThePageFragment } from "#graphql-operations";
defineProps<{ node: ThePageFragment }>();
const props = defineProps<ThePageFragment>();
useSeoMeta({ title: props.title });
</script>
<template>
<TheSections :sections="node.groupPostPage?.sections || []" />
<TheSections :sections="groupPostPage?.sections || []" />
</template>