mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-04-08 16:48:50 -04:00
Add contact links
This commit is contained in:
@@ -6,13 +6,15 @@ import {TextEditor, useTextEditor} from "web/components/widgets/editor";
|
||||
import {JSONContent} from "@tiptap/core";
|
||||
import {getVotes} from "web/lib/supabase/votes";
|
||||
import {MAX_DESCRIPTION_LENGTH} from "common/envs/constants";
|
||||
import {useEffect, useState} from "react";
|
||||
import React, {useEffect, useState} from "react";
|
||||
import {Button} from "web/components/buttons/button";
|
||||
import {Input} from "web/components/widgets/input";
|
||||
import {api} from "web/lib/api";
|
||||
import {Title} from "web/components/widgets/title";
|
||||
import toast from "react-hot-toast";
|
||||
import {Vote, VoteItem} from 'web/components/votes/vote-item'
|
||||
import Link from "next/link";
|
||||
import {formLink} from "common/constants";
|
||||
|
||||
export function VoteComponent() {
|
||||
const user = useUser()
|
||||
@@ -29,11 +31,12 @@ export function VoteComponent() {
|
||||
|
||||
const hideButton = title.length == 0
|
||||
|
||||
console.debug('votes', votes)
|
||||
|
||||
return (
|
||||
<Col className="mx-2">
|
||||
<Title className="!mb-2 text-3xl">Proposals</Title>
|
||||
<Title className="text-3xl">Proposals</Title>
|
||||
<p className={'customlink'}>
|
||||
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>.
|
||||
</p>
|
||||
{votes && votes.length > 0 && <Col className={'mt-4'}>
|
||||
{votes.map((vote: Vote) => {
|
||||
return (
|
||||
|
||||
@@ -21,6 +21,7 @@ export default function Organization() {
|
||||
<GeneralButton url={'/stats'} content={'Growth & Stats'}/>
|
||||
<GeneralButton url={'/terms'} content={'Terms and Conditions'}/>
|
||||
<GeneralButton url={'/privacy'} content={'Privacy Policy'}/>
|
||||
<GeneralButton url={'/contact'} content={'Contact'}/>
|
||||
</Col>
|
||||
</LovePage>
|
||||
)
|
||||
|
||||
@@ -108,6 +108,10 @@ We chose the name Compass because our goal is to help people orient themselves t
|
||||
* **Donate**: [Support the infrastructure](/support)
|
||||
* **Spread the Word**: Tell friends and family who value depth and real connection.
|
||||
|
||||
### How can I contact the community?
|
||||
|
||||
You can reach us through the [contact form](/contact), the [feedback form](https://forms.gle/tKnXUMAbEreMK6FC6), or any of our [socials](/social).
|
||||
|
||||
### How fast is Compass growing?
|
||||
|
||||
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:
|
||||
|
||||
Reference in New Issue
Block a user