@@ -55,7 +57,7 @@ export const BillEditForm:FC
= ({ invoiceID, bill: { id, name
//
attachment ?
-
+
{decodeURIComponent(attachment.fileName)}
diff --git a/app/ui/NotFoundPage.tsx b/app/ui/NotFoundPage.tsx
new file mode 100644
index 0000000..95301b9
--- /dev/null
+++ b/app/ui/NotFoundPage.tsx
@@ -0,0 +1,18 @@
+import Link from 'next/link';
+import { FaceFrownIcon } from "@heroicons/react/24/outline";
+import { FC } from 'react';
+
+export interface NotFoundPageProps {
+ title?:string,
+ description?:string,
+}
+
+export const NotFoundPage:FC = ({ title="404 Not Found", description="Could not find the requested content." }) =>
+
+
+ {title}
+ {description}
+
+ Go Back
+
+
\ No newline at end of file