slate/pages/guide/file.js

22 lines
686 B
JavaScript
Raw Normal View History

2022-06-16 20:58:21 +03:00
import * as React from "react";
import * as Constants from "~/common/constants";
2022-06-21 00:42:34 +03:00
import Guide from "~/pages/guide/guide.js";
2022-06-16 20:58:21 +03:00
import { css } from "@emotion/react";
export default function FileGuidePage() {
return (
<Guide
title="File Guide - Slate"
description="Your personal search engine"
url="https://slate.host/guide/file"
image="https://slate.textile.io/ipfs/bafkreifww37ypduoi5pvj2cuikz7iycp7l5h7czke6lcboukkaqkoab3t4"
heading="Files and links in one place"
body="In addition to links, Slate includes integrated storage that allows you to upload files and clip things from the web."
next="search"
prev="space"
/>
);
}