21 lines
536 B
TypeScript
21 lines
536 B
TypeScript
import { ActionButton } from "@seed-design/react";
|
||
|
||
export default function Home() {
|
||
return (
|
||
<main style={{ padding: 24 }}>
|
||
<h1 style={{ fontWeight: 700 }}>Mercury</h1>
|
||
<button
|
||
style={{
|
||
background: "var(--mercury-brand-yellow)",
|
||
color: "var(--mercury-on-brand)",
|
||
padding: "12px 20px",
|
||
borderRadius: 12,
|
||
fontWeight: 600,
|
||
}}
|
||
>
|
||
Холбох
|
||
</button>
|
||
<ActionButton variant="brandSolid">Seed OK</ActionButton>
|
||
</main>
|
||
);
|
||
}
|