import { Center, Stack, Text } from '@mantine/core' interface NotFoundStateProps { title?: string description?: string } export function NotFoundState({ title = 'Page not found', description = "The resource you're looking for doesn't exist or has been removed.", }: NotFoundStateProps) { return (