import React from "react"; import { useNavigate } from "react-router-dom"; import { Button } from "./ui/button.js"; import EconomicProjections from "./EconomicProjections.js"; /* simple pill-style label */ const Chip = ({ label }) => ( {label} ✓ in Career Coach ); export default function EnhancingLanding({ userProfile }) { const navigate = useNavigate(); const socCode = userProfile?.socCode; const stateName = userProfile?.state; return (
{/* 📌 Current status */}

📌 Your Current Status & Next Steps

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

{/* 🚀 How do I get there */}

🚀 How Do I Get There?

All of these tools live inside the Career Coach. Open it any time using the button above.

); }