From 385b2379066d85cea4a0bf0d0d8173d1aaf699ca Mon Sep 17 00:00:00 2001 From: Timothy Pidashev Date: Mon, 18 Mar 2024 18:38:35 -0700 Subject: [PATCH] style not-found --- src/web/src/app/not-found.jsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/web/src/app/not-found.jsx b/src/web/src/app/not-found.jsx index c1d97bf..52a586f 100644 --- a/src/web/src/app/not-found.jsx +++ b/src/web/src/app/not-found.jsx @@ -1,9 +1,11 @@ import React from 'react' +import Link from "next/link"; const Not_found = () => { return ( -
-

404: The requested page is not found!

+
+

Whoops, the requested page could not be found...

+ Go back to Home
) }