import React from "react"; import { ChevronRightIcon } from "@heroicons/react/20/solid"; import { useColorMode } from "@docusaurus/theme-common"; export default function HomepageHero() { const { isDarkTheme } = useColorMode(); return (
{/* Background grid pattern */} {isDarkTheme ? ( ) : ( )} {/* Background subtle gradient effect */} {isDarkTheme && ( ); }