NexoreUIv1.4
InstallationComponents41IconsNexore MakeAI
Create ProjectSTUDIOGitHub
NexoreUI
40 comps
Create Project
Studio
Installation
Components Overview
40+
Icons
300+
Categories6 groups
Button
Input
Switch
Slider
Rating
File Upload
Card
Accordion
Tabs
Table
Stepper
Scroll Area
Navigation
Dock
Data Display
Aurora Border Card
AI
AI Prompt Input
AI
Command
Theme: indigo
Studio
DocsAurora Border Card

Aurora Border Card

Modern card with a continuously flowing animated gradient border and live glow themes.

NextAI Prompt Input
On This Page
Quick Actions
Project Studio
New
Nexore Make (AI)Source on GitHub

Aurora Border Card

New

A modern, state-of-the-art card featuring continuously flowing Aurora Borealis gradient waves. Autonomous on mount without requiring hover, with high-vibrancy chromatic waves and customizable live props.

Luminous Wave Flow

Visible flowing chromatic aurora bands

7 Rich Variants

Aurora, Ocean, Sunset, Forest & more

Editable Live Props

Change text, titles, speed & glow

Light & Dark Ready

Pure white light & deep obsidian dark

NexoreUI

Beautiful Components

For Modern Builders

Build stunning interfaces with premium animated components.

Choose Your Variant

API Reference

Complete list of properties and customization options available for AuroraBorderCard.

API Reference (Props)

PropTypeDefaultDescription
variant"aurora" | "ocean" | "sunset" | "forest" | "cyber" | "gold" | "mono""aurora"Color palette theme for the continuously circulating animated gradient border.
speed"slow" | "normal" | "fast""normal"Cycle duration: slow (8s), normal (4.5s), fast (2.5s).
glow"subtle" | "medium" | "strong" | "none""medium"Intensity of the ambient luminous glow diffusing around the card perimeter.
borderWidth1 | 2 | 3 | number2Stroke thickness of the animated border in pixels.
radius"sm" | "md" | "lg" | "xl""xl"Corner curvature: sm (rounded-xl), md (rounded-2xl), lg (rounded-3xl), xl (rounded-[2rem]).
animation"flow" | "wave" | "pulse""flow"Motion style: flow (360° perimeter wave rotation), wave (linear wave shift), pulse (breathing luminance).
titlestring"Beautiful Components"Heading text rendered in the card header.
subtitlestring"For Modern Builders"Gradient subtitle rendered beneath the heading.
descriptionstring"Build stunning interfaces with premium animated components."Body copy rendered in default content mode.
badgeTextstring"NexoreUI"Text for the top badge.
buttonTextstring"Get Started"Text for the call-to-action button.
childrenReact.ReactNodeundefinedCustom content rendered inside the card surface. If omitted, default showcase content is rendered.
classNamestring—Additional CSS classes applied to the outer container.

Real-World Examples

Explore responsive implementation patterns across AI features and SaaS pricing tiers.

AI Feature Showcase Card

Hero showcase card for highlighting state-of-the-art AI agent capabilities.

Next-Gen Agent
v2.4.0

Autonomous Intelligence

Synthesize multi-modal workflows with continuous real-time reasoning and deterministic tool orchestration.

import { AuroraBorderCard } from "nexoreui";
import { Bot, ArrowRight } from "lucide-react";

export default function FeatureCard() {
  return (
    <AuroraBorderCard variant="aurora" speed="normal" glow="medium" radius="xl" borderWidth={2}>
      <div className="flex flex-col gap-6">
        <div className="flex items-center justify-between">
          <span className="text-xs font-semibold text-purple-400">Next-Gen Agent</span>
          <span className="text-xs text-zinc-500">v2.4.0</span>
        </div>
        <h4 className="text-2xl font-bold">Autonomous Intelligence</h4>
        <button className="w-full py-2.5 rounded-xl bg-primary text-white">
          Launch Pipeline →
        </button>
      </div>
    </AuroraBorderCard>
  );
}

SaaS Pricing Tier (Pro Plan)

Highlighted pricing card with vibrant Sunset gradient to maximize conversion.

Most PopularBilled monthly
$49/ month

Everything modern engineering teams need to scale.

Unlimited AI completions & streaming
Dedicated low-latency edge nodes
import { AuroraBorderCard } from "nexoreui";
import { ShieldCheck } from "lucide-react";

export default function PricingCard() {
  return (
    <AuroraBorderCard variant="sunset" speed="normal" glow="strong" radius="xl">
      <div className="flex flex-col gap-6">
        <span className="text-xs font-bold uppercase text-orange-500">Most Popular</span>
        <div className="flex items-baseline gap-1">
          <span className="text-4xl font-extrabold text-white">$49</span>
          <span className="text-sm text-zinc-400">/ month</span>
        </div>
        <button className="w-full py-2.5 rounded-xl text-xs font-semibold text-white bg-gradient-to-r from-orange-500 to-pink-500">
          Upgrade to Pro
        </button>
      </div>
    </AuroraBorderCard>
  );
}