import React, { useState } from "react"; import { Alert, Box, Paper, Tab, Tabs, Typography } from "@mui/material"; import ProfilePage from "./ProfilePage"; export default function CareerWorkspacePage() { const [tab, setTab] = useState<"master" | "builder">("master"); const [hasMasterCv, setHasMasterCv] = useState(false); return ( Career Workspace Maintain the master career profile that powers your CVs, tailored application material, and future portfolio outputs. Your master profile is the source of truth. Job-specific CV drafts remain separate and never overwrite it. setTab(value)} variant="scrollable" allowScrollButtonsMobile sx={{ px: 1.5, pt: 1 }}> {!hasMasterCv ? Create your Master CV first. Upload an existing CV or add your career history manually; the builder will unlock when the profile has content. : null} ); }