fixed router redirect for homepage join button

This commit is contained in:
2025-12-16 11:11:14 -05:00
parent 905a975327
commit e9cce2571a

View File

@@ -8,7 +8,7 @@ const router = useRouter()
const user = useUserStore();
function goToApplication() {
router.push('/apply') // change to your form route
router.push('/join') // change to your form route
}
</script>