diff --git a/public/manifest.json b/public/manifest.json index 505da1219..09b6a9986 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,6 +1,6 @@ { - "name": "MaxCoach Education Template", - "short_name": "MaxCoach", + "name": "Vets Who Code", + "short_name": "Vets Who Code", "theme_color": "#696969", "background_color": "#20AD96", "display": "standalone", diff --git a/src/assets/lib/utils.ts b/src/assets/lib/utils.ts index d084ccade..e6447944d 100644 --- a/src/assets/lib/utils.ts +++ b/src/assets/lib/utils.ts @@ -1,6 +1,6 @@ -import { type ClassValue, clsx } from "clsx" -import { twMerge } from "tailwind-merge" +import { type ClassValue, clsx } from "clsx"; +import { twMerge } from "tailwind-merge"; export function cn(...inputs: ClassValue[]) { - return twMerge(clsx(inputs)) + return twMerge(clsx(inputs)); } diff --git a/src/components/forms/comment-form.tsx b/src/components/forms/comment-form.tsx deleted file mode 100644 index 843fe84a3..000000000 --- a/src/components/forms/comment-form.tsx +++ /dev/null @@ -1,111 +0,0 @@ -import { useState } from "react"; -import clsx from "clsx"; -import { useForm, SubmitHandler } from "react-hook-form"; -import Input from "@ui/form-elements/input"; -import Textarea from "@ui/form-elements/textarea"; -import Checkbox from "@ui/form-elements/checkbox"; -import Feedback from "@ui/form-elements/feedback"; -import Button from "@ui/button"; -import { hasKey } from "@utils/methods"; - -interface IFormValues { - name: string; - email: string; - comment: string; - terms: boolean; -} - -const CommentForm = ({ className }: { className?: string }) => { - const [message, setMessage] = useState(""); - const { - register, - handleSubmit, - formState: { errors }, - } = useForm(); - - const onSubmit: SubmitHandler = (data) => { - // eslint-disable-next-line no-console - console.log(data); - setMessage("Thank you for your message!"); - }; - - return ( -
-
-
- - -
-
- - -
-
-
- -