2024-03-12 03:38:01 +00:00
|
|
|
import { GeneralLayout } from "~/components/general-layout"
|
2024-03-07 17:26:11 +00:00
|
|
|
|
|
|
|
export default function Dashboard() {
|
|
|
|
const isLogged = true
|
|
|
|
if (!isLogged) {
|
|
|
|
window.location.href = "/login"
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2024-03-12 03:38:01 +00:00
|
|
|
<GeneralLayout>
|
2024-03-07 17:26:11 +00:00
|
|
|
<div>Hello</div>
|
2024-03-12 03:38:01 +00:00
|
|
|
</GeneralLayout>
|
2024-03-07 17:26:11 +00:00
|
|
|
)
|
|
|
|
}
|