diff --git a/src/components/EnhancingLanding.js b/src/components/EnhancingLanding.js index 753641d..6f618a5 100644 --- a/src/components/EnhancingLanding.js +++ b/src/components/EnhancingLanding.js @@ -1,65 +1,66 @@ -import React from 'react'; -import { useNavigate } from 'react-router-dom'; -import { Button } from './ui/button.js'; +import React from "react"; +import { useNavigate } from "react-router-dom"; +import { Button } from "./ui/button.js"; +import EconomicProjections from "./EconomicProjections.js"; -import EconomicProjections from './EconomicProjections.js'; +/* simple pill-style label */ +const Chip = ({ label }) => ( + + {label} + βœ“ in Career Coach + +); -function EnhancingLanding({ userProfile }) { +export default function EnhancingLanding({ userProfile }) { const navigate = useNavigate(); - - const socCode = userProfile?.socCode; + const socCode = userProfile?.socCode; const stateName = userProfile?.state; return (
- {/* Combined Section: Current Status & Next Steps */} + {/* πŸ“Œ Current status */}

- πŸ“Œ Your 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. + Evaluate where you are in your career and discover upcoming milestones with our AI 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 */}

πŸš€ How Do I Get There?

-

- Accelerate your career growth with the right tools: -

-
- - - - + +
+ + + +
+ +

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

); } - -export default EnhancingLanding;