chore: update components folder structure, add constants, update existing layout components, scaffold pages

This commit is contained in:
2026-05-27 19:52:41 -07:00
parent 6193c57655
commit 50fadddbe3
16 changed files with 228 additions and 237 deletions
+65 -1
View File
@@ -1,3 +1,67 @@
import Hero from "@/components/content/Hero";
import Testimonials from "@/components/content/Testimonials";
import SectionLabel from "@/components/layout/SectionLabel";
import AccentLink from "@/components/navigation/AccentLink";
type Testimonial = {
name: string;
title: string;
avatar?: string;
quote: string;
};
const testimonialsData: 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. Hed 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:
"Hes at his best when the problem doesnt fit cleanly into one stack. Id hand him an ambiguous brief and a week later hed come back with a working prototype and a plan.",
},
];
export default function HomePage() {
return <p>Home</p>;
return (
<div>
<Hero label="Angel Mankel">
<div className="space-y-5">
<p className="font-serif italic text-3xl leading-[1.3]">
Im a creator at heart.
</p>
<p className="text-[19px] leading-[1.65]">
Building software people rely on and understanding what makes those
people tick is what drives my greatest ambitions.
</p>
<p className="text-[19px] leading-[1.65]">
Im the kind of engineer who picks up whatever the problem needs and
keeps digging into the code, and into the people its meant for.
The throughline isnt a stack, its the curiosity.
</p>
</div>
</Hero>
<SectionLabel label="Selected Projects" />
<AccentLink label="See all projects" link="/projects" />
<SectionLabel label="What people say" />
<Testimonials items={testimonialsData} />
</div>
);
}