import * as React from "react"; import * as SVG from "~/common/svg"; import * as JumperPrototype from "~/components/landing/jumperPrototype"; import * as Constants from "~/common/constants"; import Guide from "~/pages/guide/guide.js"; const VIEWS_ACTIONS = [{ label: "Current Window" }, { label: "All Open" }, { label: "Recent" }]; const CUSTOM_VIEWS_ACTIONS = [ { label: "Files" }, { label: "Twitter", Favicon: SVG.TwitterFavicon }, { label: "Reading", Favicon: SVG.Hash }, ]; const OBJECTS = [ { title: "Paul Prudence on Twitter: “Computers and Automation [August-12-2022]", Favicon: SVG.TwitterFavicon, }, { title: "Massimo on Twitter: “This is how you cut a high voltage power line [source, full video by Joe Chenoweth: https://buff.ly/2lYgk5V]”", Favicon: SVG.TwitterFavicon, isSaved: true, }, { title: "qubibi on Twitter: “stardust https://t.co/3Uu6nOmsJyafq...”", Favicon: SVG.TwitterFavicon, }, { title: "pictures of the end on Twitter: “https://t.co/A2k7vZdIF7 / Twitter”", Favicon: SVG.TwitterFavicon, }, { title: "Internal Tech Emails on Twitter: “https://t.co/2uOQawmsvJ..”", Favicon: SVG.TwitterFavicon, }, { title: "𝗺𝗮𝗺𝗲 on Twitter: “京都でかわいい建物を発見しました🤖”", Favicon: SVG.TwitterFavicon, }, { title: "Letterform Archive on Twitter: “La Carte surréaliste: La première série, 1937. (1) André Breton, Poème-Objet, (2) Georges Hugnet, Au pied de la Lettre, (3) René Magritte, La solution du rébus, (4) Joan Miró, Horaire.”", Favicon: SVG.TwitterFavicon, isSaved: true, }, { title: "karatekid on Twitter: “Doubling down. Second @qubibien = art². And delight multiplied...”", Favicon: SVG.TwitterFavicon, isSaved: true, }, { title: "Concrete Architecture (@architeg) / Twitter", Favicon: SVG.TwitterFavicon, isSaved: true, }, ]; export default function SpaceGuidePage() { return ( {VIEWS_ACTIONS.map((action) => ( {action.label} ))} {CUSTOM_VIEWS_ACTIONS.map((action, i) => ( {action.label} ))} {OBJECTS.map((object) => ( ))} } mobileguide="../public/static/space.png" /> ); }