import "./styles.css"; import Link from "next/link"; import { getSession } from "@/lib/auth"; export const metadata = { title: "Mebbling", description: "Your Memos hub" }; export default async function RootLayout({ children }: { children: React.ReactNode }) { const user = await getSession(); return