/** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import { ArtComponent } from "../../components/art"; import { Rule } from "../../components/rule"; import { Art } from "../../config/Art"; import type { JSX } from "react"; /** * Renders the /art page. * @returns A React Component. */ const Arts = (): JSX.Element => { return (

{`Art`}

{`See various art depicting Naomi.`}

{Art.toSorted((a, b) => { return a.name.localeCompare(b.name); }).map((art) => { return ( ); })}
); }; export default Arts;