diff --git a/src/app/finance/add/page.tsx b/src/app/finance/add/page.tsx new file mode 100644 index 00000000..53a1306f --- /dev/null +++ b/src/app/finance/add/page.tsx @@ -0,0 +1,16 @@ +import FinanceForm from '@/components/pages/finance/form/FinanceForm'; +import { Metadata } from 'next'; + +export const metadata: Metadata = { + title: 'Finance | Add', +}; + +const FinanceAddPage = () => { + return ( +