27 lines
1.0 KiB
JavaScript
27 lines
1.0 KiB
JavaScript
import React from 'react';
|
|
import { useNavigate } from 'react-router-dom';
|
|
import { Button } from './ui/button.js';
|
|
|
|
function RetirementLanding() {
|
|
const navigate = useNavigate();
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-50 p-6">
|
|
<div className="max-w-2xl w-full bg-white shadow-lg rounded-lg p-8">
|
|
<h1 className="text-3xl font-bold mb-4 text-center">
|
|
Retirement Planning
|
|
</h1>
|
|
<p className="text-gray-600 mb-6 text-center">
|
|
Plan strategically and financially for retirement. AptivaAI provides you with clear financial projections, milestone tracking, and scenario analysis for a secure future.
|
|
</p>
|
|
<div className="grid grid-cols-1 gap-4">
|
|
<Button onClick={() => navigate('/financial-profile')}>Update Financial Profile</Button>
|
|
<Button onClick={() => navigate('/milestone-tracker')}>Set Retirement Milestones</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default RetirementLanding;
|