Files
ADS3-Design-System/src/App.tsx
Richie f4fd1fc04b Rebrand to ADS 3.0 Design System and add DESIGN.md component reference
Convert from Research Synthesiser-specific project to general-purpose ADS 3.0
design system intended to be forked for downstream applications. Add DESIGN.md
following Google Labs spec as machine-readable reference for AI coding agents.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-22 09:59:02 +10:00

17 lines
452 B
TypeScript

function App() {
return (
<div className="min-h-screen bg-bg text-text">
<header className="bg-surface border-b border-border px-6 py-3">
<h1 className="text-lg font-semibold">ADS 3.0 Design System</h1>
</header>
<main className="p-6">
<p className="text-text-secondary">
React component library implementing the ADS 3.0 design language.
</p>
</main>
</div>
)
}
export default App