// src/components/PlanningLanding.jsx import React from 'react'; import { useNavigate } from 'react-router-dom'; import { Button } from './ui/button.js'; function PlanningLanding() { const navigate = useNavigate(); return (
{/* Header */}

Planning Your Career

Discover career options that match your interests, skills, and potential. AptivaAI helps you explore ideal paths, understand educational requirements, compare salaries, and analyze job market trends—all in one place.

{/* Options grid */}
{/* Interest Inventory */}

Interest Inventory

Identify your interests and discover careers aligned with your strengths.

{/* Career Explorer */}

Career Explorer

Research career profiles, job descriptions, salaries, and employment outlooks.

); } export default PlanningLanding;