<template>
<div>
<!-- This page now acts as a parent route for dashboard pages -->
<NuxtPage />
</div>
</template>
<script setup>
definePageMeta({
middleware: ["authentication"],
layout: "dashboard-unified",
});
</script>