blob: 764065916604a696699b62b5ad3ac1bb3a6d3284 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 (
<div className="container mx-auto py-8">
<h1 className="text-2xl font-bold tracking-tight mb-6">Create New Goal</h1>
<GoalForm />
</div>
);
}
|