repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | import { RefreshCcw } from "lucide-react"; |
| #2 | |
| #3 | interface HeaderProps { |
| #4 | title: string; |
| #5 | subtitle: string; |
| #6 | } |
| #7 | |
| #8 | export function Header({ title, subtitle }: HeaderProps) { |
| #9 | return ( |
| #10 | <> |
| #11 | <div className="warning-bar"> |
| #12 | ⚠ TRENCH STATUS: Infrastructure hardening in progress. Sovereign migrations staged. The shell stays live — laws immutable. |
| #13 | </div> |
| #14 | <header className="page-header"> |
| #15 | <div className="page-header__copy"> |
| #16 | <div className="page-header__icon">🦞</div> |
| #17 | <div> |
| #18 | <h1>{title}</h1> |
| #19 | <p>{subtitle}</p> |
| #20 | </div> |
| #21 | </div> |
| #22 | <button className="ghost-button" type="button"> |
| #23 | <RefreshCcw size={18} /> |
| #24 | <span>Refresh</span> |
| #25 | </button> |
| #26 | </header> |
| #27 | </> |
| #28 | ); |
| #29 | } |
| #30 |