import React from 'react'; import { useNavigate } from 'react-router-dom'; import { Button } from './ui/button.js'; import EconomicProjections from './EconomicProjections.js'; function EnhancingLanding({ userProfile }) { const navigate = useNavigate(); const socCode = userProfile?.socCode; const stateName = userProfile?.state; return (
{/* Combined Section: Current Status & Next Steps */}

๐Ÿ“Œ Your Current Status & Next Steps

Evaluate where you are in your career and discover your upcoming milestones with our AI-driven recommendations.

{/* Show userโ€™s current career data (if any) */} {/* Single button to go to "Career Roadmap" (formerly Milestone Tracker) */}
{/* Section: How Do I Get There? */}

๐Ÿš€ How Do I Get There?

Accelerate your career growth with the right tools:

); } export default EnhancingLanding;