Added a weird little chat for shits and giggles

This commit is contained in:
2025-04-26 01:34:49 -06:00
parent a6a17e8969
commit 871000c333
9 changed files with 297 additions and 44 deletions

View File

@ -5,11 +5,14 @@
import * as $_404 from "./routes/_404.tsx";
import * as $_app from "./routes/_app.tsx";
import * as $_layout from "./routes/_layout.tsx";
import * as $api_joke from "./routes/api/joke.ts";
import * as $api_chat from "./routes/api/chat.ts";
import * as $api_ping from "./routes/api/ping.ts";
import * as $chat from "./routes/chat.tsx";
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 $Chat from "./islands/Chat.tsx";
import * as $NavigationBar from "./islands/NavigationBar.tsx";
import * as $ScrollUpButton from "./islands/ScrollUpButton.tsx";
import type { Manifest } from "$fresh/server.ts";
@ -19,13 +22,16 @@ const manifest = {
"./routes/_404.tsx": $_404,
"./routes/_app.tsx": $_app,
"./routes/_layout.tsx": $_layout,
"./routes/api/joke.ts": $api_joke,
"./routes/api/chat.ts": $api_chat,
"./routes/api/ping.ts": $api_ping,
"./routes/chat.tsx": $chat,
"./routes/index.tsx": $index,
"./routes/post/[slug].tsx": $post_slug_,
"./routes/posts.tsx": $posts,
"./routes/projects.tsx": $projects,
},
islands: {
"./islands/Chat.tsx": $Chat,
"./islands/NavigationBar.tsx": $NavigationBar,
"./islands/ScrollUpButton.tsx": $ScrollUpButton,
},