mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 05:54:49 +03:00
21 lines
683 B
JavaScript
21 lines
683 B
JavaScript
import * as React from "react";
|
|
import * as Constants from "~/common/constants";
|
|
|
|
import Guide from "~/pages/guide/guide.js";
|
|
|
|
export default function NewTabGuidePage() {
|
|
return (
|
|
<Guide
|
|
title="New Tab Guide - Slate"
|
|
description="Your personal search engine"
|
|
url="https://slate.host/guide/new-tab"
|
|
image={`${Constants.gateways.ipfs}/bafkreifww37ypduoi5pvj2cuikz7iycp7l5h7czke6lcboukkaqkoab3t4`}
|
|
heading="Refresh your memory with every tab"
|
|
body="You can even use Slate as your new tab experience to refresh your memory as you browse."
|
|
next="/get-slate"
|
|
prev="search"
|
|
imageguide="../public/static/new-tab.png"
|
|
/>
|
|
);
|
|
}
|