diff --git a/components/create-meeting-form.tsx b/components/create-meeting-form.tsx new file mode 100644 index 0000000..2cdc80b --- /dev/null +++ b/components/create-meeting-form.tsx @@ -0,0 +1,45 @@ +"use client"; + +import * as React from "react"; +import { Button } from "./ui/button"; +import { Input } from "./ui/input"; +import { Card, CardHeader, CardTitle, CardContent, CardFooter } from "./ui/card"; + +export function CreateMeetingForm() { + const [title, setTitle] = React.useState(""); + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault(); + console.log("Meeting Created:", { title }); + // TODO: Connect to backend API + }; + + return ( + + + Schedule a Meeting + +
+ +
+
+ + setTitle(e.target.value)} + /> +
+
+
+ + + + +
+
+ ); +}