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>
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import Link from "next/link";
|
|
import { Container } from "./container";
|
|
|
|
export function SiteFooter() {
|
|
const year = new Date().getFullYear();
|
|
return (
|
|
<footer className="mt-32 border-t border-line/70 bg-cream-soft py-12 text-sm text-muted">
|
|
<Container className="flex flex-col gap-6 sm:flex-row sm:items-end sm:justify-between">
|
|
<div className="space-y-2">
|
|
<Link
|
|
href="/"
|
|
className="font-serif text-lg font-semibold text-ink"
|
|
>
|
|
Five Devs<span className="text-accent">.</span>
|
|
</Link>
|
|
<p className="max-w-md">
|
|
Senior PHP help for the unglamorous, mission-critical glue
|
|
between your store, your warehouse, and your books.
|
|
</p>
|
|
</div>
|
|
<div className="flex flex-col gap-2 sm:items-end">
|
|
<div className="flex gap-5">
|
|
<a
|
|
href="https://github.com/cgsmith"
|
|
className="hover:text-ink"
|
|
rel="noopener noreferrer"
|
|
>
|
|
GitHub
|
|
</a>
|
|
<a
|
|
href="https://www.linkedin.com/in/phpguy"
|
|
className="hover:text-ink"
|
|
rel="noopener noreferrer"
|
|
>
|
|
LinkedIn
|
|
</a>
|
|
<a
|
|
href="https://twitter.com/cgsmith105"
|
|
className="hover:text-ink"
|
|
rel="noopener noreferrer"
|
|
>
|
|
Twitter
|
|
</a>
|
|
</div>
|
|
<p>
|
|
© {year} Five Devs, LLC · Henderson, NV
|
|
</p>
|
|
</div>
|
|
</Container>
|
|
</footer>
|
|
);
|
|
}
|