import type { ReactNode } from "react"; import clsx from "clsx"; import Heading from "@theme/Heading"; import styles from "./styles.module.css"; type FeatureItem = { title: string; Svg: React.ComponentType>; description: ReactNode; }; const FeatureList: FeatureItem[] = [ { title: "Easy to Use", Svg: require("@site/static/img/undraw_docusaurus_mountain.svg").default, description: ( <> Anubis is easy to set up, lightweight, and helps get rid of the lowest hanging fruit so you can sleep at night. ), }, { title: "Lightweight", Svg: require("@site/static/img/undraw_docusaurus_tree.svg").default, description: ( <> Anubis is efficient and as lightweight as possible, blocking the worst of the bots on the internet and makes it easy to protect what you host online. ), }, { title: "Multi-threaded", Svg: require("@site/static/img/undraw_docusaurus_react.svg").default, description: ( <> Anubis uses a multi-threaded proof of work check to ensure that users browsers are up to date and support modern standards. ), }, ]; function Feature({ title, Svg, description }: FeatureItem) { return (
{title}

{description}

); } export default function HomepageFeatures(): ReactNode { return (
{FeatureList.map((props, idx) => ( ))}
); }