Imports tradein-mvp/frontend (38 components) to a claude.ai/design design-system project. Synth-entry build (Next.js app, no dist): - overrides/source-kit.mjs: process.env shim for browser IIFE - preview-provider.tsx: seeded TanStack Query provider (mirrors the repo's offline ui-preview client) so fetch-coupled + auth-gated cards render - previews/*.tsx: authored preview compositions (real fixture data) - conventions.md: README header for the design agent - config.json + NOTES.md: reproducible re-sync inputs
9 lines
613 B
TypeScript
9 lines
613 B
TypeScript
import { HeroTransparency } from 'tradein-mvp-frontend';
|
|
import { FIXTURE_ESTIMATE } from './_fixtures';
|
|
|
|
/** Блок «доверие + действия» в шапке результата — CTA «заявка» (лид-инбокс задан
|
|
* в shim env), «Скачать PDF», свежесть данных и collapsible «Как рассчитано»
|
|
* (band достоверности, аналоги, точность адреса). Generic-бренд (brandSlug=null). */
|
|
export const Default = () => (
|
|
<HeroTransparency estimate={FIXTURE_ESTIMATE} brandSlug={null} brandName={null} />
|
|
);
|