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>
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
export type CaseStudy = {
|
|
slug: string;
|
|
client: string;
|
|
industry: string;
|
|
summary: string;
|
|
outcome: string;
|
|
yearsRunning?: string;
|
|
role?: string;
|
|
};
|
|
|
|
export const caseStudies: CaseStudy[] = [
|
|
{
|
|
slug: "pritikin-foods",
|
|
client: "Pritikin Foods",
|
|
industry: "DTC food · e-commerce + 3PL",
|
|
summary:
|
|
"Reliable shipping and order parsing pipeline between Pritikin's e-commerce site and their fulfillment partner.",
|
|
outcome:
|
|
"Multi-year partnership keeping the order-to-shipment loop quietly running.",
|
|
yearsRunning: "Several years",
|
|
role: "Embedded developer",
|
|
},
|
|
{
|
|
slug: "americold",
|
|
client: "Americold",
|
|
industry: "Cold-chain 3PL · enterprise logistics",
|
|
summary:
|
|
"Solution-oriented engineering on operational tooling for one of the largest temperature-controlled warehousing networks in the US.",
|
|
outcome:
|
|
"Consistent senior-level delivery on customer-facing logistics tooling.",
|
|
role: "Contract developer",
|
|
},
|
|
];
|
|
|
|
export function getCaseStudy(slug: string): CaseStudy | undefined {
|
|
return caseStudies.find((c) => c.slug === slug);
|
|
}
|