Files
vibn-frontend/app/auth/layout.tsx
Mark Henderson 6f79a88abd fix(gitea-bot): add write:organization scope so bot can create repos
Without this the bot PAT 403s on POST /orgs/{org}/repos, which is
the single most important operation — creating new project repos
inside the workspace's Gitea org.

Made-with: Cursor
2026-04-21 11:05:55 -07:00

34 lines
899 B
TypeScript

import type { Metadata } from "next";
import { Plus_Jakarta_Sans } from "next/font/google";
import { Toaster } from "sonner";
import { JustineAuthShell } from "@/marketing/components/justine/JustineAuthShell";
import "../styles/justine/02-signup.css";
const justineJakarta = Plus_Jakarta_Sans({
subsets: ["latin"],
weight: ["400", "500", "600", "700", "800"],
variable: "--font-justine-jakarta",
display: "swap",
});
export const metadata: Metadata = {
title: "Sign in · vibn",
description: "Sign in to your vibn workspace with Google.",
};
export default function AuthLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div
data-justine-auth
className={`${justineJakarta.variable} justine-auth-root flex min-h-screen flex-col`}
>
<JustineAuthShell>{children}</JustineAuthShell>
<Toaster position="top-center" />
</div>
);
}