A site that knows who's walking in.
Dynamic. Instant. Intentional.
The problem
A static resume or portfolio speaks the same way to every viewer. When you want to signal intentionality to a specific recruiter or team, there's no cheap way to do it — and a generic homepage is the opposite of intentional.
The solution
A Next.js site where the URL slug personalizes the hero, intro, and sign-off. Send one link — yourname.com/stripe — and the recipient lands on a page that reads like it was written for them, because every instance of it was.
- URL slug
- /stripe
- /john-doe
- Strip unsafe chars
- Title-case
- Cap length
- Known company?
- Hyphen?
- Short word?
- Hero
- Intro
- Sign-off
Steps to solve
- 01Define the slug contract. One URL segment. /{name} is the only variable that matters — everything downstream derives from it.
- 02Sanitize and format. Pure functions strip unsafe characters, cap length, and title-case the result. No regex in the UI layer.
- 03Classify heuristically. Known-companies list plus simple rules (hyphen → person, short single word → person, rest → generic). No APIs, no ML.
- 04Render three variants. Person, company, and generic copy paths. All other UI pulls from a single content object returned by one pure function.
- 05Extend everywhere. <title> tags, intro sentence, CTA sign-off — the same name flows through the whole page, not just the hero.
Inputs & context
- URL slug. The only input that matters.
- Known-companies list. Small Set<string>, easily extended.
- Classification rules. A handful of lines, no dependencies.
One link, infinite recipients, zero per-recipient effort. A three-minute deploy turns every outbound into a tailored landing.


