diff --git a/src/app/page.tsx b/src/app/page.tsx
index a27d247..d69de84 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,12 +1,25 @@
import { Center, Container, Input, Text, VStack } from "@chakra-ui/react";
+interface QuestionBoxProps {
+ question: string;
+}
+
+const QuestionBox = (props: QuestionBoxProps) => {
+ const { question } = props;
+ return (
+ <>
+ {question}
+
+ >
+ );
+};
+
export default function Home() {
return (
- Quanto è lunga una patatina chips?
-
+