import React from 'react'; import { useNavigate } from 'react-router-dom'; import './GettingStarted.css'; function GettingStarted() { const navigate = useNavigate(); const handleStartInventory = () => { navigate('/interest-inventory'); // Navigate to InterestInventory when the user clicks "Start Inventory" }; return (

Welcome to AptivaAI

Let’s start by getting to know you better. Completing the steps below will help us tailor career recommendations based on your interests.

📄

Step 1: Set Up Your Profile

Add details like your skills, education, and experience to further personalize your recommendations.

🎯

Step 2: Complete the O*Net Interest Inventory

Discover your career interests by taking the O*Net inventory. This will help us suggest personalized career paths for you.

{/* Start Inventory button */}

Already know your path?

You can skip ahead and begin planning your milestones now.

); } export default GettingStarted;