import { useColorMode } from "@chakra-ui/react"; import Image from "next/image"; import { useId } from "react"; import { Container } from "./Container"; function BackgroundIllustration(props) { const id = useId(); const { colorMode } = useColorMode(); const baseRingColor = colorMode === "light" ? "#d4d4d4" : "#005a69"; const gradStopColor = colorMode === "light" ? "#06b6d4" : "#00f2ff"; return (
); } export function Hero() { const { colorMode } = useColorMode(); const pTextColor = colorMode === "light" ? "text-gray-600" : "text-white"; const fancyTextGradientClasses = colorMode === "light" ? "from-blue-600 via-sky-400 to-blue-700" : "from-blue-500 via-sky-300 to-blue-400"; return (

Open Assistant

Conversational AI for everyone.

We believe we can create a revolution.

In the same way that Stable Diffusion helped the world make art and images in new ways, we want to improve the world by providing amazing conversational AI.

{""}
); }