'use client'; import Image from 'next/image'; import { useRouter } from 'next/navigation'; import { motion } from 'framer-motion'; import { ChevronLeft } from 'lucide-react'; import { cn } from '@documenso/ui/lib/utils'; import { Button } from '@documenso/ui/primitives/button'; import backgroundPattern from '~/assets/background-pattern.png'; export type NotFoundPartialProps = { children?: React.ReactNode; }; export default function NotFoundPartial({ children }: NotFoundPartialProps) { const router = useRouter(); return (
404 Page not found
The page you are looking for was moved, removed, renamed or might never have existed.