Gateprep / frontend /src /components /test /EmptyQuestionsScreen.jsx
banu4prasad's picture
fix: shadcn color token cleanup
be8595f
Raw
History Blame Contribute Delete
930 Bytes
import AlertTriangle from 'lucide-react/dist/esm/icons/alert-triangle'
import { Card, CardContent } from '@/components/ui/card'
import { Button } from '@/components/ui/button'
export default function EmptyQuestionsScreen({ navigate }) {
return (
<div className="min-h-screen flex items-center justify-center p-4 bg-background">
<Card className="w-full max-w-md text-center border-border">
<CardContent className="p-6 pt-8">
<AlertTriangle size={36} className="text-warning-text mx-auto mb-3" />
<h1 className="text-xl font-bold mb-2 text-foreground">No Questions Available</h1>
<p className="text-sm mb-5 text-muted-foreground">
This test does not have any questions to display.
</p>
<Button onClick={() => navigate('/tests')} className="w-full">
Back to Tests
</Button>
</CardContent>
</Card>
</div>
)
}