Files
nlcc-itinerary/components/Footer.vue
2025-10-02 09:24:41 -04:00

13 lines
352 B
Vue

<template>
<footer class="bg-gray-100 border-t border-gray-200 mt-auto">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
<p class="text-center text-sm text-gray-600">
Created for New Life Christian Church by Joshua Ryder with AI assistance
</p>
</div>
</footer>
</template>
<script setup lang="ts">
</script>