Introduce page level layout so that we can create public and private components, similar to route based auth. This presents the ability for users to view each page subjectively.
<PrivateLayout>
// ...components that require login.
</PrivateLayout>
<PublicLayout>
// ...components that do not require login.
</PublicLayout>
Introduce page level layout so that we can create
public
andprivate
components, similar to route based auth. This presents the ability for users to view each page subjectively.