import { Box, Text, useColorMode } from "@chakra-ui/react"; import Image from "next/image"; import { useTranslation } from "next-i18next"; import { Container } from "./Container"; import { AnimatedCircles } from "./AnimatedCircles"; export function Hero() { const { t } = useTranslation("index"); 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 ( {t("title")} {t("subtitle")} {t("blurb")} {t("blurb1")} {""} ); }