mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
Authentication with Credentials is working and setup, same for OAuth with Google.
This commit is contained in:
@@ -1,45 +1,20 @@
|
||||
import {SidebarInset, SidebarProvider, SidebarTrigger } from "@/components/ui/sidebar"
|
||||
import {AppSidebar} from "@/components/wrappers/SideBar/app-sidebar";
|
||||
import {
|
||||
Breadcrumb,
|
||||
BreadcrumbItem,
|
||||
BreadcrumbLink,
|
||||
BreadcrumbList, BreadcrumbPage,
|
||||
BreadcrumbSeparator
|
||||
} from "@/components/ui/breadcrumb";
|
||||
import {Separator} from "@/components/ui/separator";
|
||||
import {currentUser} from "@/auth/current-user";
|
||||
import {redirect} from "next/navigation";
|
||||
|
||||
|
||||
export default async function Layout({children}: { children: React.ReactNode }) {
|
||||
|
||||
const user = await currentUser()
|
||||
|
||||
if (!user) {
|
||||
redirect('/login')
|
||||
}
|
||||
|
||||
export default function Layout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<SidebarProvider>
|
||||
<AppSidebar/>
|
||||
{/*<SidebarInset>*/}
|
||||
{/* <header className="flex h-16 shrink-0 items-center gap-2 border-b px-4">*/}
|
||||
{/* <SidebarTrigger className="-ml-1" />*/}
|
||||
{/* <Separator orientation="vertical" className="mr-2 h-4" />*/}
|
||||
{/* <Breadcrumb>*/}
|
||||
{/* <BreadcrumbList>*/}
|
||||
{/* <BreadcrumbItem className="hidden md:block">*/}
|
||||
{/* <BreadcrumbLink href="#">*/}
|
||||
{/* Building Your Application*/}
|
||||
{/* </BreadcrumbLink>*/}
|
||||
{/* </BreadcrumbItem>*/}
|
||||
{/* <BreadcrumbSeparator className="hidden md:block" />*/}
|
||||
{/* <BreadcrumbItem>*/}
|
||||
{/* <BreadcrumbPage>Data Fetching</BreadcrumbPage>*/}
|
||||
{/* </BreadcrumbItem>*/}
|
||||
{/* </BreadcrumbList>*/}
|
||||
{/* </Breadcrumb>*/}
|
||||
{/* </header>*/}
|
||||
{/* <div className="flex flex-1 flex-col gap-4 p-4">*/}
|
||||
{/* <div className="grid auto-rows-min gap-4 md:grid-cols-3">*/}
|
||||
{/* <div className="aspect-video rounded-xl bg-muted/50" />*/}
|
||||
{/* <div className="aspect-video rounded-xl bg-muted/50" />*/}
|
||||
{/* <div className="aspect-video rounded-xl bg-muted/50" />*/}
|
||||
{/* </div>*/}
|
||||
{/* <div className="min-h-[100vh] flex-1 rounded-xl bg-muted/50 md:min-h-min" />*/}
|
||||
{/* </div>*/}
|
||||
{/*</SidebarInset>*/}
|
||||
<main>
|
||||
<SidebarTrigger/>
|
||||
{children}
|
||||
|
||||
@@ -5,7 +5,6 @@ export default async function RoutePage(props: PageParams<{}>) {
|
||||
|
||||
return(
|
||||
<div>
|
||||
|
||||
<h1>Ok</h1>
|
||||
<Button>Button</Button>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user