Ribbons
Animations
Flowing ribbon effects following the cursor.
Import
import { PixelRibbons } from "@/components/ui/pixel/animations/pixel-ribbons"Usage
Component Source
Copy and paste the following code into your project at /src/components/ui/pixel/animations/pixel-ribbons.tsx
"use client";
import * as React from "react";
import Ribbons from "@/components/Ribbons";
export function PixelRibbons(props: any) {
return (
<div className="pixel-animation-wrapper w-full h-48">
<Ribbons {...props} />
</div>
);
}
export default PixelRibbons;
Accessibility
This component is built with accessibility in mind, including proper ARIA attributes, keyboard navigation, and focus management.