Files
opencode/packages/console/app/src/component/legal.tsx
David Hill 37baed99c1 Brand page
2025-10-30 22:13:48 +00:00

15 lines
289 B
TypeScript

import { A } from "@solidjs/router"
export function Legal() {
return (
<div data-component="legal">
<span>
©{new Date().getFullYear()} <a href="https://anoma.ly">Anomaly</a>
</span>
<span>
<A href="/brand">Brand</A>
</span>
</div>
)
}