mercury-web/src/app/page.tsx

21 lines
536 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
);
}