aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/app/(main)/goals/new
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/app/(main)/goals/new')
-rw-r--r--frontend/src/app/(main)/goals/new/page.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/frontend/src/app/(main)/goals/new/page.tsx b/frontend/src/app/(main)/goals/new/page.tsx
new file mode 100644
index 0000000..7640659
--- /dev/null
+++ b/frontend/src/app/(main)/goals/new/page.tsx
@@ -0,0 +1,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>
+ );
+} \ No newline at end of file