Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/PageNotFound/PageNotFound.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import { Helmet } from "react-helmet-async";
import { Link } from "react-router-dom";

// Styles
import "./PageNotFound.scss";

export default function PageNotFound() {
return (
<div className="page markdown">
Expand All @@ -13,7 +10,10 @@ export default function PageNotFound() {
</Helmet>
<h1>Page Not Found</h1>
<p>Oops! The page you are looking for has been removed or relocated.</p>
<Link className="button" to="/">
<Link
className="no-underline inline-block py-[3px] px-[5px] text-[1.1rem] rounded-[5px] w-auto border border-[#175d96] text-[#175d96] hover:bg-[#175d96] hover:text-white"
to="/"
>
Go to Homepage
</Link>
</div>
Expand Down
17 changes: 0 additions & 17 deletions src/components/PageNotFound/PageNotFound.scss

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ exports[`PageNotFound renders correctly 1`] = `
Oops! The page you are looking for has been removed or relocated.
</p>
<a
class="button"
class="no-underline inline-block py-[3px] px-[5px] text-[1.1rem] rounded-[5px] w-auto border border-[#175d96] text-[#175d96] hover:bg-[#175d96] hover:text-white"
data-discover="true"
href="/"
>
Expand Down
Loading