mirror of
https://gitbruv.vercel.app/api/git/bruv/gitbruv.git
synced 2025-12-20 23:24:09 +01:00
23 lines
497 B
TypeScript
23 lines
497 B
TypeScript
import type { Metadata } from "next";
|
|
import { Toaster } from "@/components/ui/sonner";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "gitbruv",
|
|
description: "Where code lives",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<body className="min-h-screen">
|
|
{children}
|
|
<Toaster richColors position="top-right" />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|