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"; import { css } from "@emotion/react"; const VIEWS_ACTIONS = [{ label: "Current Window" }, { label: "All Open" }, { label: "Recent" }]; const OBJECTS = [ { title: "Concrete Architecture (@architeg) / Twitter", Favicon: SVG.TwitterFavicon, isSaved: true, tag: "architecture", }, { title: "Fitzcarraldo 1982 Werner Herzog Klaus Kinski Full Movie HD", Favicon: SVG.YoutubeFavicon, isSelected: true, }, { title: "Amazon.com: Whole Foods Market", Favicon: SVG.AmazonFavicon, }, { title: "NASA Is Working With Startups to Harvest the Moon’s Resources", Favicon: SVG.WSJFavicon, }, { title: "SyntheticEvent - React", Favicon: SVG.ReactFavicon, isSaved: true, tag: "code", }, { title: "slate-engineering/slate-web-extension at @aminejv/history", Favicon: SVG.GithubFavicon, isSaved: true, tag: "slate", }, { title: "Verticle ⋅ Mount Kimbie", Favicon: SVG.SpotifyFavicon, isSaved: true, tag: "work-music", }, { title: "tokyo travel restrictions 2022 - Google Search", Favicon: SVG.GoogleFavicon, }, ]; export default function SaveGuidePage() { return ( {VIEWS_ACTIONS.map((action, i) => ( {action.label} ))} {OBJECTS.map((object) => ( ))} } mobileguide="../public/static/save.png" /> ); }