mirror of
https://github.com/documenso/documenso.git
synced 2025-11-15 09:12:02 +10:00
74 lines
2.4 KiB
TypeScript
74 lines
2.4 KiB
TypeScript
|
|
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 (
|
|
<div className={cn('relative max-w-[100vw] overflow-hidden')}>
|
|
<div className="absolute -inset-24 -z-10">
|
|
<motion.div
|
|
className="flex h-full w-full items-center justify-center"
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: 0.8, transition: { duration: 0.5, delay: 0.5 } }}
|
|
>
|
|
<img
|
|
src={backgroundPattern}
|
|
alt="background pattern"
|
|
className="-mr-[50vw] -mt-[15vh] h-full scale-100 object-cover md:scale-100 lg:scale-[100%] dark:contrast-[70%] dark:invert dark:sepia"
|
|
style={{
|
|
mask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 80%)',
|
|
WebkitMask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 80%)',
|
|
}}
|
|
priority
|
|
/>
|
|
</motion.div>
|
|
</div>
|
|
|
|
<div className="container mx-auto flex h-full min-h-screen items-center px-6 py-32">
|
|
<div>
|
|
<p className="text-muted-foreground font-semibold">
|
|
<Trans>404 Page not found</Trans>
|
|
</p>
|
|
|
|
<h1 className="mt-3 text-2xl font-bold md:text-3xl">
|
|
<Trans>Oops! Something went wrong.</Trans>
|
|
</h1>
|
|
|
|
<p className="text-muted-foreground mt-4 text-sm">
|
|
<Trans>
|
|
The page you are looking for was moved, removed, renamed or might never have existed.
|
|
</Trans>
|
|
</p>
|
|
|
|
<div className="mt-6 flex gap-x-2.5 gap-y-4 md:items-center">
|
|
<Button
|
|
variant="ghost"
|
|
className="w-32"
|
|
onClick={() => {
|
|
void navigate(-1);
|
|
}}
|
|
>
|
|
<ChevronLeft className="mr-2 h-4 w-4" />
|
|
<Trans>Go Back</Trans>
|
|
</Button>
|
|
|
|
{children}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|