import { useStore } from "../store/useStore"; const Link = ({ href, children, }: { href: string; children: React.ReactNode; }) => { return ( {children} ); }; export const Hero = () => { const [index, setIndex] = useStore((state) => [state.index, state.setIndex]); return (