Platform
Back to Blog

Exploring Aceternity UI

Published on January 20, 2024

Cool Components

We recently integrated some components from Aceternity UI into our landing page. Here are a few highlights:

  1. Aurora Background: Creates a beautiful, dynamic background effect.
  2. Wavy Background: Provides a nice transition between sections.
  3. Spotlight: Adds a neat hover effect to cards.
  4. Hover Border Gradient: Used for the main CTA button.
  5. Sparkles: Added to the logo for extra flair.

It's a great library for adding polished visual elements.

// Example usage (conceptual)
import { AuroraBackground } from '@/components/aceternity/aurora-background';

function MyComponent() {
  return (
    <AuroraBackground>
      <p>Content goes here</p>
    </AuroraBackground>
  );
}