feat: first GUI impl of answer page
This commit is contained in:
parent
245693021b
commit
a536971049
1 changed files with 7 additions and 2 deletions
|
@ -1,9 +1,14 @@
|
||||||
import { Center, Container } from "@chakra-ui/react";
|
import { Center, Container, Input, Text, VStack } from "@chakra-ui/react";
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<Container h="100vh" w="100vw">
|
<Container h="100vh" w="100vw">
|
||||||
<Center h="100%">Hello World!</Center>
|
<Center h="100%">
|
||||||
|
<VStack>
|
||||||
|
<Text>Quanto è lunga una patatina chips?</Text>
|
||||||
|
<Input placeholder="Subtle" variant="subtle" />
|
||||||
|
</VStack>
|
||||||
|
</Center>
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue