more ignored words
This commit is contained in:
@@ -14,19 +14,21 @@ export default function Home() {
|
|||||||
|
|
||||||
if (session) {
|
if (session) {
|
||||||
return (
|
return (
|
||||||
<div className={styles.container}>
|
<div className="">
|
||||||
<Head>
|
<Head>
|
||||||
<title>Wastpol</title>
|
<title>Wastpol</title>
|
||||||
</Head>
|
</Head>
|
||||||
|
|
||||||
<div className="flex justify-between">
|
<div className="flex md:flex-row flex-col justify-between px-8 mt-2">
|
||||||
<Nav />
|
<Nav />
|
||||||
<UserTop session={session} />
|
<UserTop session={session} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<main className="flex flex-1 flex-col justify-center items-center p-8 mx-36 mt-12 rounded-md shadow-md transition-all duration-500 hover:shadow-xl">
|
<main className="flex flex-1 flex-col items-center">
|
||||||
<Header />
|
<div className="flex flex-col items-center p-8 mt-12 rounded-md shadow-md transition-all duration-500 hover:shadow-xl">
|
||||||
<Generator />
|
<Header />
|
||||||
|
<Generator />
|
||||||
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -124,7 +124,7 @@ export default function Generator() {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<div className="flex">
|
<div className="flex xl:flex-row flex-col">
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<Pane width={480}>
|
<Pane width={480}>
|
||||||
<TextareaField
|
<TextareaField
|
||||||
|
|||||||
@@ -2,10 +2,10 @@ import { Pane, Heading } from "evergreen-ui";
|
|||||||
|
|
||||||
export default function Header() {
|
export default function Header() {
|
||||||
return (
|
return (
|
||||||
<Pane>
|
|
||||||
<Heading is="h1" size={800} marginBottom={42}>
|
<Heading is="h1" size={800} marginBottom={42}>
|
||||||
Generuj profil przekroju terenu
|
Generuj profil przekroju terenu
|
||||||
</Heading>
|
</Heading>
|
||||||
</Pane>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user