All checks were successful
Build and Push Nightly CI Image / build_and_push (push) Successful in 1m47s
Build and Push Docker Image / build_and_push (push) Successful in 3s
24 lines
675 B
TypeScript
24 lines
675 B
TypeScript
import "./globals.css"
|
|
import type { Metadata } from "next"
|
|
import { Providers } from "@/app/providers"
|
|
import type React from "react"
|
|
import { GeistSans } from 'geist/font/sans';
|
|
|
|
export const metadata: Metadata = {
|
|
title: "LibreCloud",
|
|
description: "Secure and private cloud services including email, password management, and code hosting.",
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en" className={GeistSans.className} suppressHydrationWarning>
|
|
<body>
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
)
|
|
} |