2025-01-23 18:30:01 -05:00
|
|
|
import "./globals.css"
|
|
|
|
import type { Metadata } from "next"
|
2025-02-16 15:28:17 -05:00
|
|
|
import { Providers } from "@/app/providers"
|
|
|
|
import type React from "react"
|
|
|
|
import { GeistSans } from 'geist/font/sans';
|
2025-01-23 18:30:01 -05:00
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2025-01-23 19:35:51 -05:00
|
|
|
title: "LibreCloud",
|
2025-01-23 18:30:01 -05:00
|
|
|
description: "Secure and private cloud services including email, password management, and code hosting.",
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function RootLayout({
|
2025-02-16 15:28:17 -05:00
|
|
|
children,
|
|
|
|
}: {
|
2025-01-23 18:30:01 -05:00
|
|
|
children: React.ReactNode
|
|
|
|
}) {
|
|
|
|
return (
|
2025-02-16 15:28:17 -05:00
|
|
|
<html lang="en" className={GeistSans.className} suppressHydrationWarning>
|
|
|
|
<body>
|
|
|
|
<Providers>{children}</Providers>
|
|
|
|
</body>
|
2025-01-23 18:30:01 -05:00
|
|
|
</html>
|
|
|
|
)
|
2025-02-16 15:28:17 -05:00
|
|
|
}
|