export default function BottomQuote({ post }: { post: any }) {
  return (
    <div
      className="flex items-center justify-center py-15 md:py-25"
      style={{
        color: post.theme.textColorLight,
        backgroundColor: post.theme.bgColorDark,
      }}
    >
      <div
        className="mx-auto flex w-[75%] items-center justify-center text-center text-sm md:w-[24%]"
        style={{
          color: post.theme.textColorLight,
        }}
      >
        {post.bottomQuote}
      </div>
    </div>
  );
}
