'use client';

import { ErrorView } from '@/components/ui/ErrorView';

export default function NotFound() {
    return (
        <ErrorView
            title="404!"
            descriptionPrimary="Looks Like You’re Lost"
            descriptionSecondary="The Page You’re Looking Not Availble !"
        />
    );
}
