wip: added project modal

still want to add carousel, summary, etc.
This commit is contained in:
2025-12-02 14:07:18 -05:00
parent 82cf30447b
commit 3e24c3936a
4 changed files with 252 additions and 12 deletions

View File

@@ -16,6 +16,8 @@ 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 * as $modal from "./islands/modal.tsx";
import * as $portal from "./islands/portal.tsx";
import { type Manifest } from "$fresh/server.ts";
const manifest = {
@@ -36,6 +38,8 @@ const manifest = {
islands: {
"./islands/Counter.tsx": $Counter,
"./islands/ProjectCard.tsx": $ProjectCard,
"./islands/modal.tsx": $modal,
"./islands/portal.tsx": $portal,
},
baseUrl: import.meta.url,
} satisfies Manifest;