import { Metadata } from "next"; export const metadata: Metadata = { title: "Goals | Finance", description: "Manage your financial goals", }; export default function GoalsLayout({ children, }: { children: React.ReactNode; }) { return <>{children}; }