import { Metadata } from "next"; import { GoalForm } from "../components/goal-form"; export const metadata: Metadata = { title: "New Goal | Finance", description: "Create a new financial goal", }; export default function NewGoalPage() { return (

Create New Goal

); }