Files
wp-headless/wp-content/themes/moonshine/app/components/site/SiteFooter.vue
Pascal Martineau b89f02955d
All checks were successful
Deployment / wordpress (push) Successful in 6s
Deployment / nuxt (push) Successful in 58s
feat: Replace eslint => oxlint + oxfmt
2026-02-01 22:00:54 -05:00

13 lines
300 B
Vue

<script setup lang="ts">
const { data: siteOptions } = await useSiteOptions();
</script>
<template>
<footer class="links:link-prose bg-accented">
<div class="container py-6">
<AcfSocial :social="parseAcfSocial(siteOptions)" />
</div>
<SiteFooterBottom />
</footer>
</template>