import { useId } from "react"; import { useColorMode } from "@chakra-ui/react"; import { Container } from "./Container"; function CircleBackground({ width = 558, height = 558, ...props }) { 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 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 (

Join Us

All open source projects begin with people like you. Open source is the belief that if we collaborate we can together gift our knowledge and technology to the world for the benefit of humanity. Are you in? Find us here:

); }