Components
Loading preview...
A visually engaging, retro-style television graphic to display error messages like "404 Not Found". The component is customizable, allowing you to change the error code and message via props
@ravikatiyar
npx shadcn@latest add https://21st.dev/r/ravikatiyar162/404-error-pageimport { RetroTvError } from '@/components/ui/404-error-page'; // Adjust the import path as needed
export default function RetroTvErrorDemo() {
return (
<div className="flex flex-col items-center justify-center gap-8 p-4">
{/* Example 1: Default 404 Error */}
<div style={{ transform: 'scale(0.8)' }}>
<RetroTvError />
</div>
</div>
);
}