-
Notifications
You must be signed in to change notification settings - Fork 414
landing-3 #1599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
landing-3 #1599
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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 hidden or 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,108 @@ | ||
| import { Link } from "@tanstack/react-router"; | ||
|
|
||
| export function NotFoundDocument() { | ||
| return ( | ||
| <div className="min-h-screen flex flex-col"> | ||
| <Header /> | ||
| <main className="flex-1 flex items-center justify-center bg-linear-to-b from-stone-50 to-stone-100 px-4"> | ||
| <div className="text-center"> | ||
| <h1 className="text-3xl font-medium text-neutral-700 mb-4 font-serif"> | ||
| Page Not Found | ||
| </h1> | ||
|
|
||
| <div className="text-[200px] leading-none font-caprasimo text-neutral-800 mb-8"> | ||
| 404 | ||
| </div> | ||
|
|
||
| <p className="text-base text-neutral-600 max-w-md mx-auto"> | ||
| We couldn't find the page you were looking for. If you think this is an error, you can{" "} | ||
| <a | ||
| href="mailto:[email protected]" | ||
| className="text-stone-700 underline hover:text-stone-900 transition-colors" | ||
| > | ||
| let us know | ||
| </a> | ||
| . | ||
| </p> | ||
| </div> | ||
| </main> | ||
| <Footer /> | ||
| </div> | ||
| ); | ||
| } | ||
|
|
||
| function Header() { | ||
| return ( | ||
| <header className="sticky top-0 bg-white/80 backdrop-blur-sm border-b border-neutral-100 z-50"> | ||
| <div className="max-w-6xl mx-auto px-4 sm:px-0 py-3 border-x border-neutral-100"> | ||
| <div className="flex items-center justify-between"> | ||
| <div className="flex items-center gap-4"> | ||
| <Link | ||
| to="/" | ||
| className="font-semibold text-2xl font-serif hover:scale-105 transition-transform" | ||
| > | ||
| Hyprnote | ||
| </Link> | ||
| <a | ||
| href="https://docs.hyprnote.com" | ||
| className="text-sm text-neutral-600 hover:text-neutral-800 transition-colors" | ||
| > | ||
| Docs | ||
| </a> | ||
| <a | ||
| href="https://hyprnote.com/blog" | ||
| className="text-sm text-neutral-600 hover:text-neutral-800 transition-colors" | ||
| > | ||
| Blog | ||
| </a> | ||
| <Link | ||
| to="/pricing" | ||
| className="text-sm text-neutral-600 hover:text-neutral-800 transition-colors" | ||
| > | ||
| Pricing | ||
| </Link> | ||
| </div> | ||
| <nav className="flex items-center gap-6"> | ||
| <div className="flex gap-3"> | ||
| <Link | ||
| to="/auth" | ||
| search={{ flow: "web" }} | ||
| className="px-3 h-8 flex items-center text-sm text-neutral-500 hover:text-neutral-800 transition-colors" | ||
| > | ||
| Get Started | ||
| </Link> | ||
| <Link | ||
| to="/downloads" | ||
| className="px-4 h-8 flex items-center text-sm bg-linear-to-t from-stone-600 to-stone-500 text-white rounded-full shadow-md hover:shadow-lg hover:scale-[102%] active:scale-[98%] transition-all" | ||
| > | ||
| Download | ||
| </Link> | ||
| </div> | ||
| </nav> | ||
| </div> | ||
| </div> | ||
| </header> | ||
| ); | ||
| } | ||
|
|
||
| function Footer() { | ||
| const currentYear = new Date().getFullYear(); | ||
|
|
||
| return ( | ||
| <footer className="border-t border-neutral-100 bg-white"> | ||
| <div className="max-w-6xl mx-auto px-4 sm:px-0 py-6 border-x border-neutral-100"> | ||
| <div className="flex items-center justify-between text-sm text-neutral-500"> | ||
| <p>© {currentYear} Fastrepl, Inc.</p> | ||
| <div className="flex gap-6"> | ||
| <a href="/privacy" className="hover:text-neutral-800 transition-colors"> | ||
| Privacy | ||
| </a> | ||
| <a href="/terms" className="hover:text-neutral-800 transition-colors"> | ||
| Terms | ||
| </a> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </footer> | ||
| ); | ||
| } | ||
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.