Files
cultureat-bak/wp-content/themes/ccat/app/components/nodes/TheProfile.vue
Pascal Martineau 299213d5e9
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m6s
refactor: membership => profile
2025-09-24 16:01:46 -04:00

13 lines
278 B
Vue

<script setup lang="ts">
import type { TheProfileFragment } from "#graphql-operations";
const props = defineProps<TheProfileFragment>();
useSeoMeta({ title: props.title });
</script>
<template>
<UPage>
<UPageSection v-if="title" :title="title" />
</UPage>
</template>