import * as React from "react"; import * as Constants from "~/common/constants"; import WebsitePrototypeWrapper from "~/components/core/WebsitePrototypeWrapper"; import WebsitePrototypeHeader from "~/components/core/NewWebsitePrototypeHeader"; import WebsitePrototypeFooter from "~/components/core/NewWebsitePrototypeFooter"; import { css } from "@emotion/react"; const STYLES_ROOT = css` width: 100%; margin: -88px auto 0 auto; padding: 0 88px 128px 88px; background-color: ${Constants.system.grayLight6}; @media (max-width: ${Constants.sizes.mobile}px) { padding: 48px 24px; } `; const STYLES_CONTAINER = css` max-width: 1440px; width: 100%; margin: 0 auto; `; const STYLES_H1 = css` font-family: ${Constants.font.medium}; font-weight: 400; font-size: ${Constants.typescale.lvl4}; letter-spacing: -0.022rem; line-height: 1.3; color: ${Constants.system.grayDark6}; margin-bottom: 1rem; width: 95%; @media (max-width: ${Constants.sizes.mobile}px) { font-size: ${Constants.typescale.lvl3}; } `; const STYLES_H2 = css` font-family: ${Constants.font.medium}; font-weight: 400; font-size: ${Constants.typescale.lvl2}; letter-spacing: -0.017rem; line-height: 1.3; color: ${Constants.system.blue}; margin-bottom: 1rem; width: 95%; @media (max-width: ${Constants.sizes.mobile}px) { font-size: ${Constants.typescale.lvl1}; } `; const STYLES_P = css` font-family: ${Constants.font.text}; font-weight: 400; font-size: ${Constants.typescale.lvl1}; letter-spacing: -0.011rem; line-height: 1.5; margin: 4px 0 0 0; color: ${Constants.system.grayDark6}; width: 80%; @media (max-width: ${Constants.sizes.mobile}px) { width: 100%; } `; const STYLES_SECTION_WRAPPER = css` width: 100%; height: 100%; padding: 120px 0; @media (max-width: ${Constants.sizes.mobile}px) { padding: 120px 0 48px 0; } `; const STYLES_SECTION_FLEXWRAPPER = css` display: flex; width: 100%; height: 100%; @media (max-width: ${Constants.sizes.mobile}px) { display: block; } `; const STYLES_TEXT_BLOCK = css` width: 33.33%; @media (max-width: ${Constants.sizes.tablet}px) { width: 100%; } `; const STYLES_BUTTON_PRIMARY = css` margin: 32px 0 0 0; min-height: 48px; box-sizing: border-box; border: 0; border-radius: 4px; padding: 0 32px; display: inline-flex; align-items: center; justify-content: center; user-select: none; background-color: ${Constants.system.blue}; color: ${Constants.system.white}; text-decoration: none; font-family: ${Constants.font.semiBold}; font-weight: 400; font-size: ${Constants.typescale.lvl1}; letter-spacing: -0.011rem; transition: 200ms ease all; cursor: pointer; :hover { opacity: 0.9; } `; const STYLES_BUTTON_SECONDARY = css` margin: 32px 0 16px 0; min-height: 48px; box-sizing: border-box; border: 1px solid ${Constants.system.grayLight2}; border-radius: 4px; padding: 0 32px; display: inline-flex; align-items: center; justify-content: center; user-select: none; background-color: ${Constants.system.grayLight6}; color: ${Constants.system.blue}; text-decoration: none; font-family: ${Constants.font.semiBold}; font-weight: 400; font-size: ${Constants.typescale.lvl1}; letter-spacing: -0.011rem; transition: 200ms ease all; cursor: pointer; :hover { opacity: 0.9; } `; const STYLES_BLUE = css` color: ${Constants.system.blue}; `; const STYLES_HALFBLOCK = css` width: 50%; margin-bottom: 64px; @media (max-width: ${Constants.sizes.mobile}px) { width: 100%; } `; const styleCenterBlock = { textAlign: `center`, margin: `0 auto`, }; const STYLES_IMG = css` width: 70%; margin: 0 auto; display: block; box-shadow: 0px 10px 50px 20px rgba(0, 0, 0, 0.1); @media (max-width: ${Constants.sizes.tablet}px) { width: 100%; } `; const STYLES_VR = css` width: 1px; height: 48px; background-color: ${Constants.system.grayLight2}; margin: 0 auto; `; const STYLES_IMG_OVERLAY = css` width: 24%; margin: -30% 0 0 70%; display: block; box-shadow: 0px 10px 50px 20px rgba(0, 0, 0, 0.1); @media (max-width: ${Constants.sizes.tablet}px) { margin: -30% 0 0 60%; width: 30%; } `; export default class SlateForChromePage extends React.Component { render() { const title = `Slate for Chrome`; const description = "Upload images to Slate from anywhere on the web"; const url = "https://slate.host/slate-for-chrome"; const image = "https://slate.textile.io/ipfs/bafybeidi6z774yoge5uowzwkdrrnrzi5bzqgzrwfizw4dg4xdjxfjoa5ei"; return (

Upload images to Slate
from anywhere on the web

Add Slate to Chrome

Contribute

We would love for you to join us. You are welcome to file an issue or submit a pull request on Github.

View Github

Release

Slate for Chrome is open source and past versions are also available for download.

Download Slate for Chrome
); } }