diff --git a/constants/education.ts b/constants/education.ts new file mode 100644 index 0000000..07c71d8 --- /dev/null +++ b/constants/education.ts @@ -0,0 +1,4 @@ +export const education = [ + { span: "2023 - July 2026", degree: "Bachelor of Science, Computer Science", location: "Western Governors University" }, + { span: "2019 - 2021", degree: "Associate of Science, Networking Technologies", location: "Central Arizona College" }, +]; \ No newline at end of file diff --git a/constants/index.ts b/constants/index.ts new file mode 100644 index 0000000..1c33b20 --- /dev/null +++ b/constants/index.ts @@ -0,0 +1,5 @@ +export { colors } from "./colors"; +export { testimonials } from "./testimonials"; +export { projects } from "./projects"; +export { education } from "./education"; +export { timeline } from "./timeline"; \ No newline at end of file diff --git a/constants/projects.ts b/constants/projects.ts new file mode 100644 index 0000000..75fc022 --- /dev/null +++ b/constants/projects.ts @@ -0,0 +1,44 @@ +export const projects = [ + { + title: "Project 1", + year: "2023", + stack: ["React", "Node.js"], + description: "A web application for managing tasks.", + outcome: "Increased productivity by 20%." + }, + { + title: "Project 2", + year: "2023", + stack: ["React", "Node.js"], + description: "A web application for managing tasks.", + outcome: "Increased productivity by 20%." + }, + { + title: "Project 3", + year: "2023", + stack: ["React", "Node.js"], + description: "A web application for managing tasks.", + outcome: "Increased productivity by 20%." + }, + { + title: "Project 4", + year: "2023", + stack: ["React", "Node.js"], + description: "A web application for managing tasks.", + outcome: "Increased productivity by 20%." + }, + { + title: "Project 5", + year: "2023", + stack: ["React", "Node.js"], + description: "A web application for managing tasks.", + outcome: "Increased productivity by 20%." + }, + { + title: "Project 6", + year: "2023", + stack: ["React", "Node.js"], + description: "A web application for managing tasks.", + outcome: "Increased productivity by 20%." + } +] \ No newline at end of file diff --git a/constants/testimonials.ts b/constants/testimonials.ts new file mode 100644 index 0000000..7d7badb --- /dev/null +++ b/constants/testimonials.ts @@ -0,0 +1,28 @@ +import { Testimonial } from "@/shared/types"; + +export const testimonials: Testimonial[] = [ + { + name: "Sarah Chen", + title: "Senior Software Engineer · Patient Platforms", + quote: + "Working with Angel was the first time I saw someone treat Claude Code as a real engineering tool instead of a toy. He’d built half a workflow before the rest of us figured out it was possible.", + }, + { + name: "Marcus Whitfield", + title: "Staff Frontend Engineer", + quote: + "He owned the component library end-to-end and ran the migration without breaking a single screen. Quiet shipper — you only notice his work when you go looking for it.", + }, + { + name: "Priya Anand", + title: "Product Designer", + quote: + "Angel is the rare engineer who actually reads designs and asks questions when something feels off. Half my polish budget got returned to me on the projects he was on.", + }, + { + name: "Daniel Okafor", + title: "Engineering Manager", + quote: + "He’s at his best when the problem doesn’t fit cleanly into one stack. I’d hand him an ambiguous brief and a week later he’d come back with a working prototype and a plan.", + }, +]; \ No newline at end of file diff --git a/constants/timeline.ts b/constants/timeline.ts new file mode 100644 index 0000000..4a7a0aa --- /dev/null +++ b/constants/timeline.ts @@ -0,0 +1,5 @@ +export const timeline = [ + { span: "2024 - now", role: "Software Engineer · Frontend & AI tooling" }, + { span: "2022 - 2024", role: "Salesforce Administrator" }, + { span: "2019 - 2022", role: "Help Desk / IT Operations" }, +]; \ No newline at end of file