import type { FloatingButtonBlock } from "@/types";
import FloatingButtonsClient from "./floatingButtons.client";

interface Props {
  data: FloatingButtonBlock;
  heroId?: string;
  cardSectionId?: string;
}

export default function FloatingButtons({ data, heroId, cardSectionId }: Props) {
  return (
    <FloatingButtonsClient
      data={data}
      heroId={heroId}
      cardSectionId={cardSectionId}
    />
  );
}
