aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/app/(main)/goals/layout.tsx
blob: 25ea2090d88aa3694558a2d3aab82874e0dbd864 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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}</>;
}