Holographic Card

A stunning 3D floating card featuring a blurred holographic background gradient, local grain textures, and an accompanying glitch typography component.

Showcase

CSS FUTURE

Holographic Interface

Pure CSS art combining glitch typography, grain textures, floating holograms and 3D depth.

EXPLORE

Installation

npx shadcn-extras@latest add holographic-card

Usage


import {
HolographicCard,
GlitchText,
} from '@/components/core/holographic-card';
export function Example() {
return (
<div className='holographic-container h-screen w-full'>
{/* Optional animated grain noise overlay */}
<div className='holographic-grain-overlay' />
<GlitchText text='CYBERPUNK' className='text-white' />
<HolographicCard
title='Welcome to the Future'
description='This card floats in 3D space with a holographic glow.'
buttonText='ENTER'
/>
</div>
);
}

Props

HolographicCard

PropTypeDescription
titleReact.ReactNodeThe main title of the card
descriptionReact.ReactNodeThe paragraph text
buttonTextstringThe text for the holographic button
buttonHrefstringThe link for the holographic button

GlitchText

PropTypeDescription
textstringThe text to display and animate
asstringThe HTML element to render (default: h1)