added routes for rss, sitemap, updated footer

This commit is contained in:
2025-07-17 20:09:01 -04:00
parent 71b3b1f42d
commit bc8e093651
4 changed files with 12 additions and 2 deletions

View File

@@ -12,6 +12,8 @@ import * as $index from "./routes/index.tsx";
import * as $posts_id_ from "./routes/posts/[id].tsx";
import * as $posts_index from "./routes/posts/index.tsx";
import * as $projects_index from "./routes/projects/index.tsx";
import * as $rss_index from "./routes/rss/index.tsx";
import * as $sitemap_index from "./routes/sitemap/index.tsx";
import * as $Counter from "./islands/Counter.tsx";
import * as $ProjectCard from "./islands/ProjectCard.tsx";
import { type Manifest } from "$fresh/server.ts";
@@ -28,6 +30,8 @@ const manifest = {
"./routes/posts/[id].tsx": $posts_id_,
"./routes/posts/index.tsx": $posts_index,
"./routes/projects/index.tsx": $projects_index,
"./routes/rss/index.tsx": $rss_index,
"./routes/sitemap/index.tsx": $sitemap_index,
},
islands: {
"./islands/Counter.tsx": $Counter,