major: statically-generated resume with Vike

This commit is contained in:
Avraham Sakal
2025-08-24 15:13:02 -04:00
parent 0d820466d0
commit 3b47596a57
21 changed files with 6108 additions and 394 deletions
+19
View File
@@ -0,0 +1,19 @@
import { usePageContext } from "vike-react/usePageContext";
export default function Page() {
const { is404 } = usePageContext();
if (is404) {
return (
<>
<h1>404 Page Not Found</h1>
<p>This page could not be found.</p>
</>
);
}
return (
<>
<h1>500 Internal Server Error</h1>
<p>Something went wrong.</p>
</>
);
}