import type { Metadata } from "next"; import { IconBrandLinkedinFilled, IconMailFilled } from "@tabler/icons-react"; import Hero from "@/components/content/Hero"; import SectionLabel from "@/components/layout/SectionLabel"; import AccentLink from "@/components/navigation/AccentLink"; import GiteaIcon from "@/components/icons/GiteaIcon"; import Tooltip from "@/components/ui/Tooltip"; import { colors, education, timeline } from "@/constants"; export const metadata: Metadata = { title: "About โ€” Angel Mankel", }; export default function AboutPage() { return (

I came up through healthcare IT โ€” help desk, then Salesforce administration, then software engineering. A path that taught me to translate between operations, design, and engineering without losing the thread.

These days I write React and TypeScript for production, lead component-library work, and spend a lot of time in Claude Code โ€” custom slash commands, MCP integrations, agent workflows. The AI-tooling layer is reshaping how I work across the stack.

Based in Arizona, looking for remote-US roles where shipping frontend product and building AI tooling around it are both first-class. Bonus points for teams that take design seriously and don't hand things off at every layer.

    {education.map((row) => (
  • {row.span} {row.degree} ยท {row.location}
  • ))}
    {timeline.map((row) => (
  • {row.span} {row.role}
  • ))}
); }