import { Trans } from '@lingui/macro'; import { motion } from 'framer-motion'; import { ChevronLeft } from 'lucide-react'; import { useNavigate } from 'react-router'; import backgroundPattern from '@documenso/assets/images/background-pattern.png'; import { cn } from '@documenso/ui/lib/utils'; import { Button } from '@documenso/ui/primitives/button'; export type NotFoundPartialProps = { children?: React.ReactNode; }; export default function NotFoundPartial({ children }: NotFoundPartialProps) { const navigate = useNavigate(); return (
background pattern

404 Page not found

Oops! Something went wrong.

The page you are looking for was moved, removed, renamed or might never have existed.

{children}
); }