Waves

Animations

Wave animation background with mouse interaction.

Import

import { PixelWaves } from "@/components/ui/pixel/animations/pixel-waves"

Usage

Component Source

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

"use client";

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

export function PixelWaves(props: any) {
  return (
    <div className="pixel-animation-wrapper w-full h-48">
      <Waves {...props} />
    </div>
  );
}

export default PixelWaves;

Accessibility

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