import { ArrowRightIcon } from '@components/icons' import cn from 'clsx' import { motion } from 'framer-motion' import Link from 'next/link' import type { ReactNode } from 'react' import styles from './style.module.css' export function Feature({ large, centered, children, lightOnly, className, href, index, ...props }) { return ( {children} {href ? ( ) : null} ) } export function Features({ children }: { children: ReactNode }) { return
{children}
}