Components
The Event Aquarium Calendar is a visually engaging calendar component designed like a virtual aquarium. Each day is represented as a floating bubble, and events appear as “fish” or objects swimming into these bubbles, creating an intuitive and playful way to visualize schedules. Users can add events with a title and date, which are then dynamically placed within the aquarium. The component supports both light and dark themes, with bubbles styled appropriately for visibility. A month and year selector allows users to navigate through time, filtering the displayed bubbles and the monthly event overview accordingly. Clicking on a bubble reveals a popover with event details and a delete option, making it interactive and easy to manage events while maintaining a visually appealing and creative interface.
Loading preview...
"use client"
import * as React from "react"
import { EventAquariumCalendar } from "@/components/ui/event-aquarium-calendar"
export default function DemoPage() {
return (
<div className="p-6">
<h1 className="text-2xl font-bold mb-4">Event Aquarium Calendar Demo</h1>
<EventAquariumCalendar />
</div>
)
}