Replaces the hugo site with a custom Next.js 16 app under new-site/. Old hugo site is untouched until cutover. What's in here: - Next.js 16 (App Router, Turbopack) + React 19 + Tailwind v4 + MDX - Pages: home, services, about, work (+ 2 case studies), contact, blog (3 seed posts), thank-you, /sitemap.xml, /robots.txt - Stripe Payment Link checkout for retainer + 5/10/20-hour blocks, with website-redesign-launch sale (50% off) toggleable in src/lib/pricing.ts. Falls back to /contact when env vars unset. - Guarantees component on home + services (4 promises in writing) - HowIWork principles on about - Client logo strip with the 8 named clients (text wordmarks for now) - JSON-LD on every important page (Organization / Person / Service / Article / BreadcrumbList) for SEO + LLM discoverability - /llms.txt at site root - STRATEGY.md with positioning, 30-day content plan, Stripe setup walkthrough, SEO checklist, and a list of what Chris needs to wire before launch (Cal.com link, mailbox, photo, client sign-off, env vars) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
17 lines
621 B
Plaintext
17 lines
621 B
Plaintext
# Stripe Payment Link URLs.
|
|
# Create each Payment Link in your Stripe Dashboard:
|
|
# Dashboard -> Payment Links -> + New
|
|
# Then paste the resulting URL (looks like https://buy.stripe.com/abc123)
|
|
# into the matching variable below.
|
|
#
|
|
# When the website-redesign-launch sale is active (see
|
|
# src/lib/pricing.ts), each Payment Link should be configured at the
|
|
# sale price (50% of the regular price shown on the site). When you
|
|
# end the sale, swap each URL to a Payment Link priced at the regular
|
|
# amount.
|
|
|
|
NEXT_PUBLIC_STRIPE_RETAINER=
|
|
NEXT_PUBLIC_STRIPE_BLOCK_5=
|
|
NEXT_PUBLIC_STRIPE_BLOCK_10=
|
|
NEXT_PUBLIC_STRIPE_BLOCK_20=
|