import { Box, Link, Text, useColorMode } from "@chakra-ui/react"; import { useTranslation } from "next-i18next"; import { useId } from "react"; import { FaDiscord, FaGithub } from "react-icons/fa"; import { Container } from "./Container"; const CIRCLE_HEIGHT = 558; const CIRCLE_WIDTH = 558; function CircleBackground() { const id = useId(); const { colorMode } = useColorMode(); const baseRingColor = colorMode === "light" ? "#777" : "#000"; const gradStopColor = colorMode === "light" ? "#fff" : "#000"; return ( ); } export function CallToAction() { const { colorMode } = useColorMode(); const { t } = useTranslation(); const bgColorClass = colorMode === "light" ? "bg-gray-900" : "bg-gray-50"; const headingColorClass = colorMode === "light" ? "text-white" : "text-black"; const textColorClass = colorMode === "light" ? "text-gray-300" : "text-black"; return ( {t("index:join_us_title")} {t("index:join_us_description")} ); }