feat: add products/cases pages and lead-capture form block

- types: Product/CaseStudy page types, CaseStudyBlockValue, FormBlockValue
- services: product.service.ts, case.service.ts
- app/products, app/cases: list + detail pages
- blocks: CaseStudyCard, LeadForm (submits to /api/v1/custom/leads/)
- Header nav: add 产品/案例 links
This commit is contained in:
2026-08-06 16:04:43 +08:00
parent 7e30631c68
commit b5fe5e13ab
11 changed files with 391 additions and 1 deletions
+2
View File
@@ -2,6 +2,8 @@ import Link from "next/link";
const navItems = [
{ title: "首页", href: "/" },
{ title: "产品", href: "/products" },
{ title: "案例", href: "/cases" },
{ title: "博客", href: "/blog" },
];