Spaces:
Sleeping
Sleeping
import { Inter } from "next/font/google"; | |
import "./globals.css"; | |
const inter = Inter({ subsets: ["latin"] }); | |
export const metadata = { | |
title: "Real-time SDTurbo + WebRTC", | |
description: "", | |
}; | |
export default function RootLayout({ children }) { | |
return ( | |
<html lang="en" className="bg-gray-100"> | |
<body className={inter.className}> | |
<div className="container flex align-center min-h-screen"> | |
<div className="self-center w-full">{children}</div> | |
</div> | |
</body> | |
</html> | |
); | |
} | |