mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
32 lines
753 B
TypeScript
32 lines
753 B
TypeScript
import React from "react";
|
|
import type {Metadata} from "next";
|
|
import {Inter} from "next/font/google";
|
|
|
|
import "./globals.css";
|
|
import {Providers} from "./providers";
|
|
import {cn} from "@/lib/utils";
|
|
|
|
|
|
const inter = Inter({subsets: ["latin"]});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Portabase",
|
|
description: "Manage all your database instances from one place !",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={cn(inter.className, "h-full")}>
|
|
<Providers>
|
|
{children}
|
|
</Providers>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|