// SignInLanding.jsx import React from 'react'; import { Link } from 'react-router-dom'; function SignInLanding({ user }) { return (

Welcome to AptivaAI {user?.firstname}!

At AptivaAI, we aim to arm you with as much information as possible to make informed career decisions. Today’s workplace is changing faster than ever, driven largely by AI—but our goal is to use that same technology to empower job seekers, not replace them. We blend data-backed insights with human-centered design, enhanced -not driven by- AI. Giving you practical recommendations and real-world context so you stay in the driver’s seat of your career. Whether you’re planning your first step, advancing your current role, or ready to pivot entirely, our platform keeps you in control—helping you adapt, grow, and thrive on your own terms.

Where would you like to go next?

{/* Mobile: stacked full-width; Desktop: original inline buttons with spacing */}
Go to Exploring Go to Preparing Go to Enhancing Go to Retirement
); } export default SignInLanding;