import "./globals.css" import type { Metadata } from "next" import { Inter } from "next/font/google" import Navbar from "../app/components/Navbar" const inter = Inter({ subsets: ["latin"] }) export const metadata: Metadata = { title: "LibreCloud - Free Cloud Services", description: "Secure and private cloud services including email, password management, and code hosting.", } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }