feat: Initial NodeByUri logic and frontend

This commit is contained in:
2026-01-13 21:25:20 -05:00
parent 5bda835566
commit 688c4e36b3
10 changed files with 291 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
fragment SectionTextBlock on GroupAbstractBuilderSectionsTextBlockLayout {
content
}

View File

@@ -0,0 +1,9 @@
<script setup lang="ts">
import type { SectionTextBlockFragment } from "#graphql/typed-documents";
defineProps<SectionTextBlockFragment>();
</script>
<template>
<div v-html="content" />
</template>