refactor: SectionWrapper
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 57s

This commit is contained in:
2025-09-24 15:38:45 -04:00
parent 5c49583287
commit 1f81cb4ad8
7 changed files with 35 additions and 17 deletions

View File

@@ -0,0 +1,13 @@
<script setup lang="ts">
import type { SectionWrapperFragment } from "#graphql-operations";
defineProps<SectionWrapperFragment>();
</script>
<template>
<section :class="bgColor">
<div :class="contentWidth">
<slot />
</div>
</section>
</template>