diff options
author | 2025-04-27 23:02:42 +0530 | |
---|---|---|
committer | 2025-04-27 23:02:42 +0530 | |
commit | 538d933baef56d7ee76f78617b553d63713efa24 (patch) | |
tree | 3fcbc4208849dfa0e5dc8fe5761e103a3591c283 /frontend/src/app/(main)/goals/layout.tsx | |
parent | 3941d80ff120238b973451325b834ebd8377281e (diff) | |
download | finance-538d933baef56d7ee76f78617b553d63713efa24.tar.gz finance-538d933baef56d7ee76f78617b553d63713efa24.tar.bz2 finance-538d933baef56d7ee76f78617b553d63713efa24.zip |
finance: feat: added the goal page with some improvements of ui
Diffstat (limited to 'frontend/src/app/(main)/goals/layout.tsx')
-rw-r--r-- | frontend/src/app/(main)/goals/layout.tsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/frontend/src/app/(main)/goals/layout.tsx b/frontend/src/app/(main)/goals/layout.tsx new file mode 100644 index 0000000..25ea209 --- /dev/null +++ b/frontend/src/app/(main)/goals/layout.tsx @@ -0,0 +1,14 @@ +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}</>; +}
\ No newline at end of file |