mirror of
https://github.com/aljazceru/opencode.git
synced 2026-01-24 18:24:58 +01:00
15 lines
289 B
TypeScript
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>
|
|
)
|
|
}
|