25 lines
757 B
TypeScript
25 lines
757 B
TypeScript
import DefaultTemplate from "@Front/Components/LayoutTemplates/DefaultTemplate";
|
|
import Link from "next/link";
|
|
import BasePage from "../Base";
|
|
import classes from "./classes.module.scss";
|
|
|
|
export default class PageNotFound extends BasePage {
|
|
public override render(): JSX.Element {
|
|
return (
|
|
<DefaultTemplate title={"Project Not Found"}>
|
|
<div className={classes["root"]}>
|
|
{/* <Image alt="Unplugged" height="50" src={UnpluggedIcon} /> Oops */}
|
|
<div className={classes["text"]}>There isn't anything here...</div>
|
|
<div className={classes["home-button"]}>
|
|
<Link href="/">{/* <Button text="Go to Home" icon={CardsIcon} /> */}</Link>
|
|
</div>
|
|
|
|
<label>
|
|
<input />
|
|
</label>
|
|
</div>
|
|
</DefaultTemplate>
|
|
);
|
|
}
|
|
}
|