function Feature()

in src/components/Sections/WhyDevlake.tsx [17:34]


function Feature({
  className,
  children,
}: {
  className?: string;
  children: React.ReactNode;
}) {
  return (
    <div
      className={`flex w-full sm:justify-between mobile:justify-between items-center
      h-[488px] mobile:h-[auto] sm:h-[auto] relative
      space-x-5
      flex-col ${className}`}
    >
      {children}
    </div>
  );
}