mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-23 09:45:33 +00:00
36 lines
No EOL
855 B
TypeScript
36 lines
No EOL
855 B
TypeScript
import { auth } from "@/auth";
|
|
import { NavigationMenu } from "../components/navigationMenu";
|
|
import { redirect } from "next/navigation";
|
|
|
|
interface LayoutProps {
|
|
children: React.ReactNode;
|
|
params: Promise<{ domain: string }>;
|
|
}
|
|
|
|
export default async function Layout(
|
|
props: LayoutProps
|
|
) {
|
|
const params = await props.params;
|
|
|
|
const {
|
|
domain
|
|
} = params;
|
|
|
|
const {
|
|
children
|
|
} = props;
|
|
|
|
const session = await auth();
|
|
if (!session) {
|
|
return redirect(`/${domain}`);
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen flex flex-col">
|
|
<NavigationMenu domain={domain} />
|
|
<main className="flex-grow flex justify-center p-4 bg-backgroundSecondary relative">
|
|
<div className="w-full max-w-6xl p-6">{children}</div>
|
|
</main>
|
|
</div>
|
|
)
|
|
} |