import React from "react"; import { Alert, Box, Paper, Typography } from "@mui/material"; import CareerProfilePage from "./CareerProfilePage"; // Phase 2 / 2.2: /career is the Career Workspace — the master career profile, the single source of // truth for all generated documents. It is a dedicated component (CareerProfilePage), no longer a // careerOnly fork of ProfilePage. The CV Builder is deliberately NOT here yet (Phase 4). export default function CareerWorkspacePage() { 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. ); }