dashbaord

This commit is contained in:
Jake Kasper
2025-09-04 09:07:49 -05:00
parent c9729130fe
commit 552aaead59
3 changed files with 20 additions and 10 deletions

View File

@@ -1,14 +1,9 @@
import React from 'react';
import { Navigate } from 'react-router-dom';
const ApplicationPlan = () => {
return (
<div className="p-6">
<h1 className="text-2xl font-bold text-gray-900 mb-6">Plan Application</h1>
<div className="card">
<p className="text-gray-600">Application planning coming soon...</p>
</div>
</div>
);
// Redirect legacy route to the Applications page with the plan modal open
return <Navigate to="/applications?new=plan" replace />;
};
export default ApplicationPlan;
export default ApplicationPlan;