import React from "react"; type ProgressiveBlurProps = { className?: string; backgroundColor?: string; position?: "top" | "bottom"; height?: string; blurAmount?: string; }; const ProgressiveBlur = ({ className = "", backgroundColor = "#f5f4f3", position = "top", height = "150px", blurAmount = "4px", }: ProgressiveBlurProps) => { const isTop = position === "top"; return (
); }; const Skiper41 = () => { return (