sitegen/src/file-viewer/pages/file.cotyledon_enterance.tsx

28 lines
669 B
TypeScript
Raw Normal View History

2025-06-21 16:04:57 -07:00
import { MediaFile } from "@/file-viewer/models/MediaFile.ts";
import { addScript } from "#sitegen";
import { Readme } from "@/file-viewer/cotyledon.tsx";
import { MediaPanel } from "../views/clofi.tsx";
2025-06-15 23:42:10 -07:00
export const theme = {
bg: "#312652",
fg: "#f0f0ff",
primary: "#fabe32",
};
2025-06-21 16:04:57 -07:00
export const meta = { title: "living room" };
2025-06-15 23:42:10 -07:00
export default function CotyledonPage() {
2025-06-21 16:04:57 -07:00
addScript("../scripts/canvas_cotyledon.client.ts");
2025-06-15 23:42:10 -07:00
return (
<div class="files ctld ctld-et">
<MediaPanel
file={MediaFile.getByPath("/")!}
isLast={false}
activeFilename={null}
hasCotyledonCookie={true}
/>
<Readme />
</div>
);
}