import { cva } from "class-variance-authority" import styles from "./hero.module.css" export const heroVariants = cva(styles.hero, { variants: { color: { burgundy: styles.burgundy, red: styles.red, }, }, defaultVariants: { color: "red", }, })