import * as React from "react"; import * as Constants from "~/common/constants"; import * as SVG from "~/common/svg"; import * as JumperPrototype from "~/components/landing/jumperPrototype"; import Guide from "~/pages/guide/guide.js"; const VIEWS_ACTIONS = [{ label: "Current Window" }, { label: "All Open" }, { label: "Recent" }]; const CUSTOM_VIEWS_ACTIONS = [{ label: "Files" }]; const OBJECTS = [ { title: "Alexander, C., Notes on the Synthesis of Form", Favicon: SVG.Book, isSaved: true, tag: "computer-architecture", }, { title: "Graphical database interface", Favicon: SVG.Image, isSaved: true, }, { title: "Landscape in the Mist", Favicon: SVG.Video, isSaved: true, tag: "theo-angelopoulos", }, { title: "Shannon, C., “A Theory of Communications”", Favicon: SVG.Document, isSaved: true, tag: "computer-architecture", }, { title: "Retro computer fonts", Favicon: SVG.TextDocument, isSaved: true, }, { title: "Prime number ASMR", Favicon: SVG.Sound, isSaved: true, }, { title: "Hesse, H., Demian", Favicon: SVG.Book, isSaved: true, tag: "reading", }, { title: "Pask, G., “The Architectural Relevance of Cybernetics”", Favicon: SVG.TextDocument, isSaved: true, tag: "computer-architecture", }, ]; export default function FileGuidePage() { return ( {VIEWS_ACTIONS.map((action) => ( {action.label} ))} {CUSTOM_VIEWS_ACTIONS.map((action, i) => ( {action.label} ))} {OBJECTS.map((object) => ( ))} } mobileguide="../public/static/file.png" /> ); }