19 lines
353 B
Vue
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>
|