Files
afrobiz/pages/index.vue
2024-05-16 19:45:10 +02:00

19 lines
353 B
Vue

<script setup lang="ts">
const user = useSupabaseUser();
watchEffect(() => {
if (user.value) {
navigateTo('/dashboard', { replace: true });
}
});
</script>
<template>
<div class="container mx-auto m-5">
<!-- Hightlight Section -->
<Highlight />
<!-- Entrepreneur Section -->
<Entrepreneur />
</div>
</template>