Galaxy

Animations

Animated galaxy/space background.

Import

import { PixelGalaxy } from "@/components/ui/pixel/animations/pixel-galaxy"

Usage

Component Source

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

"use client";

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

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

export default PixelGalaxy;

Accessibility

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