Resume page

This commit is contained in:
2025-05-04 00:38:56 -06:00
parent 68a817c0f4
commit 224fd31839
5 changed files with 737 additions and 1 deletions

View File

@ -12,6 +12,7 @@ import * as $index from "./routes/index.tsx";
import * as $post_slug_ from "./routes/post/[slug].tsx";
import * as $posts from "./routes/posts.tsx";
import * as $projects from "./routes/projects.tsx";
import * as $resume from "./routes/resume.tsx";
import * as $Chat from "./islands/Chat.tsx";
import * as $NavigationBar from "./islands/NavigationBar.tsx";
import * as $ScrollUpButton from "./islands/ScrollUpButton.tsx";
@ -29,6 +30,7 @@ const manifest = {
"./routes/post/[slug].tsx": $post_slug_,
"./routes/posts.tsx": $posts,
"./routes/projects.tsx": $projects,
"./routes/resume.tsx": $resume,
},
islands: {
"./islands/Chat.tsx": $Chat,