- Replace fabricated 12-year/500+/8+ team experience claims with 2026 founding, first-client co-creation, professional team wording - Remove fake case studies and unverified certifications from seeds, cases page, products and ERP upgrade page - Enable Next.js standalone output and production hybrid deployment (Dockerfile.prod, docker-compose.server.yml, Nginx nextjs upstream) - Add linux-musl Prisma engine target and production crypto key build - Sync production CMS database with cleaned seed content
12 lines
355 B
TypeScript
12 lines
355 B
TypeScript
// @ts-nocheck
|
|
import type { CaseStudy } from '../../src/lib/constants/cases';
|
|
|
|
/**
|
|
* 客户案例数据。
|
|
*
|
|
* 当前公司成立于 2026-01-15,处于首批客户共创阶段,
|
|
* 暂无对外可验证的客户案例,因此保持为空数组。
|
|
* 待真实案例获得客户授权后再补充。
|
|
*/
|
|
export const CASE_STUDIES: CaseStudy[] = [];
|