ghostguild-org/app/components/AppFooter.vue
Jennie Robinson Faber a62e167876 Migrate design system from ethereal/cool to warm/craft/guild theme
Replace ghost/whisper/sparkle color palettes with guild/candlelight/parchment/ember/earth tokens.
Switch typography from NB Television Pro to Quietism serif. Update all 25 Vue components,
layouts, and pages to new design system. Add circle color tokens, typography scale, prose-guild
class, and warm texture effects. Clean up stale documentation files.
2026-02-24 20:01:11 +00:00

31 lines
832 B
Vue

<template>
<footer class="mt-32 pb-16 px-8 md:px-12 lg:px-16">
<!-- Minimal footer content -->
<div class="max-w-4xl">
<div
class="flex flex-col md:flex-row justify-between items-start md:items-end gap-8"
>
<!-- Left: Copyright and minimal info -->
<div>
<p class="text-guild-500 text-xs mb-2">
© {{ currentYear }} Ghost Guild
</p>
</div>
<!-- Right: Contact links -->
<div class="flex flex-wrap gap-6 text-xs">
<a
href="mailto:hello@ghostguild.org"
class="text-guild-500 hover:text-guild-300 transition-colors"
>
Contact
</a>
</div>
</div>
</div>
</footer>
</template>
<script setup>
const currentYear = new Date().getFullYear();
</script>