Docker / build (push) Failing after 1m43s
Import this repo's components into a Claude Design project so the design
agent builds with the real Cloudrite library instead of generic components.
The repo is a Next.js app, not a component library: no dist/, no exports
map, no .d.ts tree, and Tailwind exists only as build directives. So
.design-sync/ carries a small build that manufactures a consumable package
from source (staged to the gitignored .ds-pkg/):
- tsconfig.dts.json declaration emit, for real <Name>Props contracts
- build-css.mjs Tailwind v4 -> a static stylesheet via @tailwindcss/postcss
- make-pkg.mjs stages the package; index.js exports all 292 symbols
while index.d.ts exports only the 61 roots, so shadcn's
flat compound parts don't each become a preview card.
Also generates the per-root parts tables in docs/
- shims/next-link router-free anchor; the real next/link needs
AppRouterContext and drags in the App Router runtime
- fonts/ Space Grotesk + Inter woff2 (SIL OFL). next/font supplies
these at runtime in the app, so the bundle has none
previews/ holds 40 authored preview stories, conventions.md is prepended to
the generated README as the design agent's usage guide, and NOTES.md records
the gotchas a future sync would otherwise rediscover.
Co-Authored-By: Claude Opus 5 <[email protected]>
24 lines
917 B
TypeScript
24 lines
917 B
TypeScript
import { Hero } from 'cloudrite';
|
|
|
|
// Hero takes no props — it is the cloudrite.co.nz landing hero, rendered exactly
|
|
// as app/page.tsx does.
|
|
//
|
|
// Two framing details, both needed for a truthful still:
|
|
// · Hero fades in (setTimeout 300ms, then `transition-all duration-1000`) and
|
|
// the capture harness only waits on fonts and images, so an unmodified
|
|
// render screenshots mid-fade at ~10% opacity. Zeroing transition/animation
|
|
// time lands every element on its final state instead.
|
|
// · It draws light-on-dark against the page background, which the card
|
|
// harness paints white.
|
|
const still = `*,*::before,*::after{
|
|
transition-duration:0s !important;transition-delay:0s !important;
|
|
animation-duration:0s !important;animation-delay:0s !important;
|
|
}`;
|
|
|
|
export const Default = () => (
|
|
<div className="bg-background text-foreground">
|
|
<style>{still}</style>
|
|
<Hero />
|
|
</div>
|
|
);
|