1
0
Fork 0
mirror of https://gitbruv.vercel.app/api/git/bruv/gitbruv.git synced 2025-12-20 23:24:09 +01:00
This commit is contained in:
Ahmet Kilinc 2025-12-20 02:43:11 +00:00
parent 8f672d012c
commit 46cab693db
49 changed files with 4725 additions and 118 deletions

27
app/(auth)/layout.tsx Normal file
View file

@ -0,0 +1,27 @@
import { GitBranch } from "lucide-react";
import Link from "next/link";
export default function AuthLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="min-h-screen flex flex-col items-center justify-center relative overflow-hidden px-4">
<div className="absolute inset-0 bg-[radial-gradient(ellipse_at_top,_var(--tw-gradient-stops))] from-accent/15 via-background to-background" />
<div className="absolute inset-0">
<div className="absolute top-1/4 left-1/4 w-[500px] h-[500px] bg-accent/5 rounded-full blur-[100px]" />
<div className="absolute bottom-1/4 right-1/4 w-[400px] h-[400px] bg-primary/5 rounded-full blur-[100px]" />
</div>
<div className="relative z-10 flex flex-col items-center w-full max-w-[400px]">
<Link href="/" className="flex items-center gap-3 mb-10 group">
<div className="relative">
<GitBranch className="w-10 h-10 text-foreground transition-transform group-hover:scale-110" />
</div>
<span className="text-2xl font-bold tracking-tight">gitbruv</span>
</Link>
{children}
</div>
</div>
);
}