polarpress-pagebuilder/resources/js/components/Blocks/Statics/PageFooter.vue
Helge-Mikael Nordgård e15d3ae146
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
Transferred and translated the frontend code from L10 to L12
2025-05-05 19:01:27 +02:00

23 lines
690 B
Vue

<script setup>
import { onMounted } from 'vue';
import { initFlowbite } from 'flowbite';
import { usePage } from '@inertiajs/vue3';
import ArcticLogo from '@/Components/FrontPage/ArcticSoftwareFrontpageLogo.vue';
import FooterLinks from '@/Components/FrontPage/FooterSection.vue';
onMounted(() => {
initFlowbite();
});
const page = usePage();
</script>
<template>
<footer class="w-full bg-white border-t-2 border-green-700">
<FooterLinks :pageSettings="page.props.pageSettings"></FooterLinks>
<div class="p-4 flex items-center justify-center">
<ArcticLogo></ArcticLogo>
</div>
</footer>
</template>