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 "./style.css";
export default function LayoutDefault({
children,
}: {
children: React.ReactNode;
}) {
return (
<div
css={{
display: "flex",
maxWidth: 1024,
margin: "auto",
}}
>
{children}
</div>
);
}