third time's a charm

This commit is contained in:
Chop
2022-02-18 00:14:48 +01:00
parent f7bd47f974
commit e4478d7841
7 changed files with 2258 additions and 267 deletions

View File

@@ -1,9 +1,12 @@
import styles from "../../styles/Home.module.css";
import { Pane, Heading } from "evergreen-ui";
export default function Header() {
return (
<div>
<h1 className="text-3xl p-6">Generuj profil przekroju terenu</h1>
</div>
);
return (
<Pane>
<Heading is="h1" size={800} marginBottom={42}>
Generuj profil przekroju terenu
</Heading>
</Pane>
);
}