Bounce Cards

Animations

Cards with bouncy hover animations.

Import

import { PixelBounceCards } from "@/components/ui/pixel/animations/pixel-bounce-cards"

Usage

Component Source

Copy and paste the following code into your project at /src/components/ui/pixel/animations/pixel-bounce-cards.tsx

"use client";

import * as React from "react";
import BounceCards from "@/components/BounceCards";

export function PixelBounceCards(props: any) {
  return (
    <div className="pixel-animation-wrapper">
      <BounceCards {...props} />
    </div>
  );
}

export default PixelBounceCards;

Accessibility

This component is built with accessibility in mind, including proper ARIA attributes, keyboard navigation, and focus management.