import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import { Providers } from "@/components/Providers"; import { Navbar } from "@/components/Navbar"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { title: "rSocials - Community Social Media Management", description: "Self-hosted social media scheduling and management for communities. Powered by Postiz. Schedule posts, manage multiple platforms, and collaborate with your team — all under your control.", keywords: [ "social media", "scheduling", "postiz", "self-hosted", "community", "management", "rSpace", "open source", "zine", "content creation", "print", ], }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (