-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from privacy-scaling-explorations/76-develop-4…
…04-page 404 page
- Loading branch information
Showing
4 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import "@/styles/globals.css" | ||
import React from "react" | ||
import Image from "next/image" | ||
import Link from "next/link" | ||
|
||
import { fontDisplay, fontSans } from "@/lib/fonts" | ||
import { Button } from "@/components/ui/button" | ||
import { SiteHeader } from "@/components/site-header" | ||
import { TailwindIndicator } from "@/components/tailwind-indicator" | ||
|
||
export default function NotFound() { | ||
return ( | ||
<html | ||
lang="en" | ||
className={`${fontSans.variable} ${fontDisplay.variable}`} | ||
suppressHydrationWarning | ||
> | ||
<head /> | ||
<body className="min-h-screen"> | ||
<div className="relative flex flex-col h-screen bg-anakiwa-50"> | ||
<SiteHeader /> | ||
<div className="container m-auto"> | ||
<div className="flex flex-col -mt-16 gap-7"> | ||
<div className="flex flex-col items-center justify-center gap-3 text-center"> | ||
<div className="flex flex-col gap-2"> | ||
<Image | ||
width={80} | ||
height={80} | ||
src="/icons/404-search.svg" | ||
alt="emotion sad" | ||
className="w-12 h-12 mx-auto md:w-24 md:h-24 text-anakiwa-400" | ||
/> | ||
<span className="text-5xl font-bold text-anakiwa-400 md:text-8xl font-display"> | ||
404 | ||
</span> | ||
</div> | ||
<div className="flex flex-col gap-5"> | ||
<span className="text-2xl font-bold md:text-6xl text-tuatara-950 font-display"> | ||
Oops! Page not found | ||
</span> | ||
<span className="font-sans text-base font-normal md:text-lg"> | ||
The page you are looking for might have been removed, had | ||
its name changed or is temporarily unavailable. | ||
</span> | ||
</div> | ||
</div> | ||
<Link href="/" className="mx-auto"> | ||
<Button variant="black">Go to homepage</Button> | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
<TailwindIndicator /> | ||
</body> | ||
</html> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
05be898
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
website-v2-production – ./
www.appliedzkp.org
website-v2-production-git-main-privacy-and-scaling-explorations.vercel.app
appliedzkp.org
website-v2-production-privacy-and-scaling-explorations.vercel.app