UwU UI
Cool UI components
A lumi card with a lumi effect.
by Sarthak Kapila
1import LumiCard from "@/components/lumi-card";23export default function Example() {4 return (5 <LumiCard6 title={"UwU UI"}7 subtitle={"Cool UI components"}8 footerLabel={"github"}9 imageUrl={"/logo.png"}10 videoUrl={"/demo-vid.mp4"}11 />12 )13}
The card uses a subtle elevation shadow that collapses on press, creating a tactile feel. Motion is powered by a spring animation for a responsive interaction.
By Sarthak Kapila.
Prop | Type | Default | Description |
---|---|---|---|
title | string | - | Title of the card. |
subtitle | string | - | Subtitle of the card. |
footerLabel | string | - | Footer label of the card. |
imageUrl | string | - | Image URL of the card. |
videoUrl | string | - | Video URL of the card. |