Components
A visually striking component that applies an interactive frosted glass effect to an image. The image is revealed locally as the user mouses over, creating an engaging "defrosting" interaction using advanced SVG filters.
npx @21st-dev/cli add dhileepkumargm/frosted-image-revealLoading preview...
import React from 'react';
import { FrostedImageEffect, SVGFilters } from "@/components/ui/frosted-image-reveal";
export default function DemoOne() {
return (
<>
<SVGFilters />
<FrostedImageEffect />
</>
);
}