Hey, maybe im just dumb currently but if i try to go into my dashboard i get a 404.
The auth pages are fully working, here is my layout from the dashboard:
import React from 'react'
const Layout = ({children}: {
children: React.ReactNode
}) => {
return (
<main>{children}</main>
)
}
export default Layout