There was an error while loading. Please reload this page.
1 parent addb52e commit 65b018dCopy full SHA for 65b018d
1 file changed
web/components/contact.tsx
@@ -8,6 +8,8 @@ import {Button} from "web/components/buttons/button";
8
import {api} from "web/lib/api";
9
import {Title} from "web/components/widgets/title";
10
import toast from "react-hot-toast";
11
+import Link from "next/link";
12
+import {formLink} from "common/constants";
13
14
export function ContactComponent() {
15
const user = useUser()
@@ -23,6 +25,10 @@ export function ContactComponent() {
23
25
return (
24
26
<Col className="mx-2">
27
<Title className="!mb-2 text-3xl">Contact</Title>
28
+ <p className={'custom-link mb-4'}>
29
+ You can also contact us through this <Link href={formLink}>feedback form</Link> or any of our <Link
30
+ href={'/social'}>socials</Link>.
31
+ </p>
32
<Col>
33
<div className={'mb-2'}>
34
<TextEditor
0 commit comments