import * as React from "react"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from "@/components/ui/card"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/components/ui/select"; import { Textarea } from "../ui/textarea"; import { SubmitButton } from "../submit-button"; import Link from "next/link"; export function ContactUsForm() { const typeMessage = [ { value: "1", label: "Request to become a user" }, { value: "2", label: "OTP problem" }, { value: "3", label: "Request for a feature" }, { value: "4", label: "Other" }, ]; return ( Contact Us Fill in the form below to contact the admin