import BgStar from "../../assets/imgs/bgstar.svg"; import Buttons from "./buttons"; import { Hero } from "@/types/landing"; export default ({ hero, count }: { hero: Hero; count?: number }) => { return (

{hero.title}

{count}{" "} {hero.description}

bgstar
); };