Added static Input-Form Prototype

This commit is contained in:
AlexE030
2023-05-10 18:19:34 +02:00
parent 646c64c7d9
commit 7db358248d
7 changed files with 158 additions and 6 deletions
+6 -4
View File
@@ -7,6 +7,8 @@ import WeekSelector from "@/components/WeekSelector";
import PopUp from "@/components/PopUp";
import CalenderView from "@/components/CalenderView";
import DateElement from "@/components/DateElement";
import InputForm from "@/components/InputForm";
const inter = Inter({subsets: ['latin']})
@@ -14,13 +16,13 @@ const inter = Inter({subsets: ['latin']})
export default function Home(p) {
return (
<>
<div style={{height: 50}}></div>
<CalenderView/>
<div className="container">
<PopUp/>
<InputForm/>
</div>
</>
)