Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

25 строки
556 B

  1. import type { Metadata } from "next";
  2. import { GeistSans } from "geist/font/sans";
  3. import { GeistMono } from "geist/font/mono";
  4. import "./globals.css";
  5. export const metadata: Metadata = {
  6. title: "Captive Portal",
  7. description: "Welcome",
  8. };
  9. export default function RootLayout({
  10. children,
  11. }: Readonly<{
  12. children: React.ReactNode;
  13. }>) {
  14. return (
  15. <html
  16. lang="it"
  17. className={`${GeistSans.variable} ${GeistMono.variable} h-full antialiased`}
  18. >
  19. <body className="min-h-full flex flex-col">{children}</body>
  20. </html>
  21. );
  22. }