import type { Metadata } from "next"; export const metadata: Metadata = { title: "Join Thoughts", description: "Create an account on Thoughts and connect across the Fediverse", }; export default function RegisterLayout({ children }: { children: React.ReactNode }) { return children; }