earmuff-jam / climate

Climate is designed to aide you with your item management.
https://climate-theta.vercel.app/
0 stars 0 forks source link

Introduce Page Layout for NextJs #108

Closed mohit2530 closed 1 year ago

mohit2530 commented 1 year ago

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>