feat: first GUI impl of answer page

This commit is contained in:
Davide Frageri 2025-07-11 02:03:16 +02:00
parent 245693021b
commit a536971049

View file

@ -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() {
return (
<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>
);
}