Moves the Next.js app's contents from new-site/ to the repository root and deletes the previous Hugo site (assets/, content/, themes/, hugo.toml, etc.). Also retires the AWS Amplify config and old Netlify _redirects file — the new site deploys to Vercel. Updates STRATEGY.md path references to drop the new-site/ prefix. LICENSE preserved. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
60 lines
2.1 KiB
TypeScript
60 lines
2.1 KiB
TypeScript
import { Container } from "./container";
|
|
import { SectionHeading } from "./section-heading";
|
|
|
|
export const testimonials = [
|
|
{
|
|
name: "Emil Boschert",
|
|
role: "Pritikin Foods",
|
|
quote:
|
|
"I have worked together with Chris and Five Devs for several years now on our shipping and order parsing process. They are vital for our e-commerce site and our 3PL.",
|
|
},
|
|
{
|
|
name: "Timothy Dorcas",
|
|
role: "Americold",
|
|
quote:
|
|
"I cannot say enough good things about the team at Five Devs. They are solution oriented, customer focused, and consistently deliver at a high level. Highly recommended.",
|
|
},
|
|
{
|
|
name: "Katie Allen",
|
|
role: "Fortune Fulfillment",
|
|
quote:
|
|
"I have been working with Five Devs on multiple customer accounts for several years. Chris makes the set-up process flow so much easier!",
|
|
},
|
|
{
|
|
name: "Tom Deppe",
|
|
role: "HD Financial",
|
|
quote:
|
|
"Five Devs is an integral part of my business. Their tech support keeps us up and running. Promptly returns phone calls and is a pleasure to work with.",
|
|
},
|
|
];
|
|
|
|
export function Testimonials() {
|
|
return (
|
|
<section className="border-y border-line/70 bg-cream-soft py-24 sm:py-32">
|
|
<Container>
|
|
<SectionHeading
|
|
eyebrow="What clients say"
|
|
title="Trusted for years, not weeks."
|
|
subtitle="Five Devs is the kind of help that gets quietly embedded in how a business runs — and stays there."
|
|
/>
|
|
<ul className="mt-14 grid gap-6 sm:grid-cols-2">
|
|
{testimonials.map((t) => (
|
|
<li
|
|
key={t.name}
|
|
className="rounded-2xl border border-line/80 bg-cream p-7 shadow-[0_1px_0_rgba(0,0,0,0.02)]"
|
|
>
|
|
<p className="font-serif text-lg leading-relaxed text-ink">
|
|
“{t.quote}”
|
|
</p>
|
|
<p className="mt-5 text-sm text-muted">
|
|
<span className="font-medium text-ink">{t.name}</span>{" "}
|
|
· {t.role}
|
|
</p>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</Container>
|
|
</section>
|
|
);
|
|
}
|