Skip to content

Commit 214bdda

Browse files
committed
Add contact links
1 parent 065d489 commit 214bdda

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

web/components/votes/vote-info.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ import {TextEditor, useTextEditor} from "web/components/widgets/editor";
66
import {JSONContent} from "@tiptap/core";
77
import {getVotes} from "web/lib/supabase/votes";
88
import {MAX_DESCRIPTION_LENGTH} from "common/envs/constants";
9-
import {useEffect, useState} from "react";
9+
import React, {useEffect, useState} from "react";
1010
import {Button} from "web/components/buttons/button";
1111
import {Input} from "web/components/widgets/input";
1212
import {api} from "web/lib/api";
1313
import {Title} from "web/components/widgets/title";
1414
import toast from "react-hot-toast";
1515
import {Vote, VoteItem} from 'web/components/votes/vote-item'
16+
import Link from "next/link";
17+
import {formLink} from "common/constants";
1618

1719
export function VoteComponent() {
1820
const user = useUser()
@@ -29,11 +31,12 @@ export function VoteComponent() {
2931

3032
const hideButton = title.length == 0
3133

32-
console.debug('votes', votes)
33-
3434
return (
3535
<Col className="mx-2">
36-
<Title className="!mb-2 text-3xl">Proposals</Title>
36+
<Title className="text-3xl">Proposals</Title>
37+
<p className={'customlink'}>
38+
You can discuss any of those proposals through the <Link href={'/contact'}>contact form</Link>, the <Link href={formLink}>feedback form</Link>, or any of our <Link href={'/social'}>socials</Link>.
39+
</p>
3740
{votes && votes.length > 0 && <Col className={'mt-4'}>
3841
{votes.map((vote: Vote) => {
3942
return (

web/pages/organization.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export default function Organization() {
2121
<GeneralButton url={'/stats'} content={'Growth & Stats'}/>
2222
<GeneralButton url={'/terms'} content={'Terms and Conditions'}/>
2323
<GeneralButton url={'/privacy'} content={'Privacy Policy'}/>
24+
<GeneralButton url={'/contact'} content={'Contact'}/>
2425
</Col>
2526
</LovePage>
2627
)

web/public/md/faq.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ We chose the name Compass because our goal is to help people orient themselves t
108108
* **Donate**: [Support the infrastructure](/support)
109109
* **Spread the Word**: Tell friends and family who value depth and real connection.
110110

111+
### How can I contact the community?
112+
113+
You can reach us through the [contact form](/contact), the [feedback form](https://forms.gle/tKnXUMAbEreMK6FC6), or any of our [socials](/social).
114+
111115
### How fast is Compass growing?
112116

113117
Compass has officially **launched** in October 2025 and is growing fast. You can explore real-time stats and transparent community data on our [**Growth & Stats page**](/stats). It includes information such as:

0 commit comments

Comments
 (0)