slate/pages/guide/new-tab.js

21 lines
683 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
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`}
2022-07-08 22:27:36 +03:00
heading="Refresh your memory with every tab"
2022-06-16 20:58:21 +03:00
body="You can even use Slate as your new tab experience to refresh your memory as you browse."
next="/get-slate"
prev="search"
2022-07-08 22:27:36 +03:00
imageguide="../public/static/new-tab.png"
2022-06-16 20:58:21 +03:00
/>
);
}