diff --git a/server/server.go b/server/server.go
index cd6cd154..efac7cab 100644
--- a/server/server.go
+++ b/server/server.go
@@ -48,6 +48,9 @@ import (
 		- Sign-in
 		- Password reset
 		- Pricing
+		- change password
+		- change email
+		-
 
 		Config flags:
 		-
diff --git a/web/public/index.html b/web/public/index.html
index 2c9751f3..0fe7170f 100644
--- a/web/public/index.html
+++ b/web/public/index.html
@@ -4,6 +4,8 @@
   <meta charset="UTF-8">
   <title>ntfy web</title>
 
+  <link rel="stylesheet" href="static/css/home.css" type="text/css">
+
   <!-- Mobile view -->
   <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
   <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
diff --git a/web/src/components/App.js b/web/src/components/App.js
index 772961d4..f0c48dec 100644
--- a/web/src/components/App.js
+++ b/web/src/components/App.js
@@ -29,6 +29,7 @@ import i18n from "i18next";
 import api from "../app/Api";
 import prefs from "../app/Prefs";
 import session from "../app/Session";
+import Pricing from "./Pricing";
 
 // TODO races when two tabs are open
 // TODO investigate service workers
@@ -42,6 +43,7 @@ const App = () => {
                     <ErrorBoundary>
                         <Routes>
                             <Route path={routes.home} element={<Home/>}/>
+                            <Route path={routes.pricing} element={<Pricing/>}/>
                             <Route path={routes.login} element={<Login/>}/>
                             <Route element={<Layout/>}>
                                 <Route path={routes.app} element={<AllSubscriptions/>}/>
diff --git a/web/src/components/Home.js b/web/src/components/Home.js
index b44a5e49..20a41b88 100644
--- a/web/src/components/Home.js
+++ b/web/src/components/Home.js
@@ -1,48 +1,151 @@
 import * as React from 'react';
-import {useEffect, useState} from 'react';
-import {
-    CardActions,
-    CardContent,
-    FormControl, Link,
-    Select,
-    Stack,
-    Table,
-    TableBody,
-    TableCell,
-    TableHead,
-    TableRow,
-    useMediaQuery
-} from "@mui/material";
-import Typography from "@mui/material/Typography";
-import prefs from "../app/Prefs";
-import {Paragraph} from "./styles";
-import EditIcon from '@mui/icons-material/Edit';
-import CloseIcon from "@mui/icons-material/Close";
-import IconButton from "@mui/material/IconButton";
-import PlayArrowIcon from '@mui/icons-material/PlayArrow';
-import Container from "@mui/material/Container";
-import TextField from "@mui/material/TextField";
-import MenuItem from "@mui/material/MenuItem";
-import Card from "@mui/material/Card";
-import Button from "@mui/material/Button";
-import {useLiveQuery} from "dexie-react-hooks";
-import theme from "./theme";
-import Dialog from "@mui/material/Dialog";
-import DialogTitle from "@mui/material/DialogTitle";
-import DialogContent from "@mui/material/DialogContent";
-import DialogActions from "@mui/material/DialogActions";
-import userManager from "../app/UserManager";
-import {playSound, shuffle, sounds, validUrl} from "../app/utils";
-import {useTranslation} from "react-i18next";
+import SiteLayout from "./SiteLayout";
 
 const Home = () => {
     return (
-        <Container maxWidth="md" sx={{marginTop: 3, marginBottom: 3}}>
-            <Stack spacing={3}>
-               This is the landing page
-                <Link href="/login">Login</Link>
-            </Stack>
-        </Container>
+        <SiteLayout>
+            <h1>Send push notifications to your phone or desktop via PUT/POST</h1>
+            <p>
+                <b>ntfy</b> (pronounce: <i>notify</i>) is a simple HTTP-based <a
+                href="https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern">pub-sub</a> notification
+                service.
+                It allows you to send notifications to your phone or desktop via scripts from any computer,
+                entirely <b>without signup, cost or setup</b>. It's also <a
+                href="https://github.com/binwiederhier/ntfy">open source</a> if you want to run your own.
+            </p>
+            <div id="screenshots">
+                <a href="static/img/screenshot-curl.png"><img src="static/img/screenshot-curl.png"/></a>
+                <a href="static/img/screenshot-web-detail.png"><img src="static/img/screenshot-web-detail.png"/></a>
+                <span className="nowrap">
+                    <a href="static/img/screenshot-phone-main.jpg"><img src="static/img/screenshot-phone-main.jpg"/></a>
+                    <a href="static/img/screenshot-phone-detail.jpg"><img src="static/img/screenshot-phone-detail.jpg"/></a>
+                    <a href="static/img/screenshot-phone-notification.jpg"><img src="static/img/screenshot-phone-notification.jpg"/></a>
+                </span>
+            </div>
+
+            <h2 id="publish" className="anchor">Publishing messages</h2>
+            <p>
+                <a href="docs/publish/">Publishing messages</a> can be done via PUT or POST. Topics are created on
+                the fly by subscribing or publishing to them.
+                Because there is no sign-up, <b>the topic is essentially a password</b>, so pick something that's
+                not easily guessable.
+            </p>
+            <p className="smallMarginBottom">
+                Here's an example showing how to publish a message using a POST request (via <tt>curl -d</tt>):
+            </p>
+            <code>
+                curl -d "Backup successful 😀" <span className="ntfyUrl">ntfy.sh</span>/mytopic
+            </code>
+            <p className="smallMarginBottom">
+                There are <a href="docs/publish/">more features</a> related to publishing messages: You can set a
+                <a href="docs/publish/#message-priority">notification priority</a>, a <a
+                href="docs/publish/#message-title">title</a>,
+                and <a href="docs/publish/#tags-emojis">tag messages</a>.
+                Here's an example using some of them together:
+            </p>
+            <code>
+                curl \<br/>
+                &nbsp;&nbsp;-H "Title: Unauthorized access detected" \<br/>
+                &nbsp;&nbsp;-H "Priority: urgent" \<br/>
+                &nbsp;&nbsp;-H "Tags: warning,skull" \<br/>
+                &nbsp;&nbsp;-d "Remote access to $(hostname) detected. Act right away." \<br/>
+                &nbsp;&nbsp;<span className="ntfyUrl">ntfy.sh</span>/mytopic
+            </code>
+            <p>
+                Here's what that looks like in the <a href="docs/subscribe/phone/">Android app</a>:
+            </p>
+            <figure>
+                <img src="static/img/screenshot-phone-popover.png" style={{maxHeight: "200px"}}/>
+                <figcaption>Urgent notification with pop-over</figcaption>
+            </figure>
+
+            <h2 id="subscribe" className="anchor">Subscribe to a topic</h2>
+            <p>
+                You can create and subscribe to a topic either <a href="docs/subscribe/phone/">using your phone</a>,
+                in <a href="docs/subscribe/web/">this web UI</a>, or in your own app by <a
+                href="docs/subscribe/api/">subscribing via the API</a>.
+            </p>
+
+            <h3 id="subscribe-phone" className="anchor">Subscribe from your phone</h3>
+            <p>
+                Simply get the app and start <a href="docs/publish/">publishing messages</a>. To learn more about
+                the app,
+                <a href="docs/subscribe/phone/">check out the documentation</a>.
+            </p>
+            <p>
+                <a href="https://play.google.com/store/apps/details?id=io.heckel.ntfy"><img src="static/img/badge-googleplay.png"/></a>
+                <a href="https://f-droid.org/en/packages/io.heckel.ntfy/"><img src="static/img/badge-fdroid.png"/></a>
+                <a href="https://apps.apple.com/us/app/ntfy/id1625396347"><img src="static/img/badge-appstore.png"/></a>
+            </p>
+            <p>
+                Here's a video showing the app in action:
+            </p>
+            <figure>
+                <video controls muted autoPlay loop src="static/img/android-video-overview.mp4" style={{maxWidth: "650px"}}></video>
+                <figcaption>Sending push notifications to your Android phone</figcaption>
+            </figure>
+
+            <h3 id="subscribe-web" className="anchor">Subscribe via web app</h3>
+            <p>
+                Subscribe to topics in the <a href="app">web app</a> and receive messages as <b>desktop
+                notification</b>.
+                It is available at <b><a href="app"><span className="ntfyUrl">ntfy.sh</span>/app</a></b>.
+            </p>
+            <figure>
+                <a href="app"><img src="static/img/screenshot-web-detail.png" width="100%"/></a>
+                <figcaption>ntfy web app, available at <a href="app"><span
+                    className="ntfyUrl">ntfy.sh</span>/app</a></figcaption>
+            </figure>
+
+            <h3 id="subscribe-api" className="anchor">Subscribe using the API</h3>
+            <p>
+                There's a super simple API that you can use to integrate your own app. You can consume
+                a <a href="docs/subscribe/api/#subscribe-as-json-stream">JSON stream</a>,
+                an <a href="docs/subscribe/api/#subscribe-as-sse-stream">SSE/EventSource stream</a>,
+                a <a href="docs/subscribe/api/#subscribe-as-raw-stream">plain text stream</a>,
+                or <a href="docs/subscribe/api/#websockets">via WebSockets</a>.
+            </p>
+            <p className="smallMarginBottom">
+                Here's an example for JSON. The <b>connection stays open</b>, so you can retrieve messages as they
+                come in:
+            </p>
+            <code>
+                $ curl -s <span className="ntfyUrl">ntfy.sh</span>/mytopic/json<br/>
+                {`{"id":"SLiKI64DOt","time":1635528757,"event":"open","topic":"mytopic"}`}<br/>
+                {`{"id":"hwQ2YpKdmg","time":1635528741,"event":"message","topic":"mytopic","message":"Hi!"}`}<br/>
+                {`{"id":"DGUDShMCsc","time":1635528787,"event":"keepalive","topic":"mytopic"}`}<br/>
+                ...
+            </code>
+            <p>
+                Here's a short video demonstrating it in action:
+            </p>
+            <figure>
+                <video controls muted autoPlay loop src="static/img/android-video-subscribe-api.mp4" style={{maxWidth: "650px"}}></video>
+                <figcaption>Subscribing to the JSON stream with <tt>curl</tt></figcaption>
+            </figure>
+
+            <h3 id="docs" className="anchor">Check out the docs!</h3>
+            <p>
+                ntfy has so many more features and you can learn about all of them <a href="docs/">in the
+                documentation</a>
+                (I tried my very best to make it the best docs ever 😉, not sure if I succeeded, hehe).
+            </p>
+            <figure>
+                <a href="docs/"><img width="100%" src="static/img/screenshot-docs.png"/></a>
+                <figcaption>Check out the documentation</figcaption>
+            </figure>
+
+            <h3 id="free-software" className="anchor">100% open source &amp; forever free</h3>
+            <p>
+                I love free software, and I'm doing this because it's fun. I have no bad intentions, and I will
+                never monetize or sell your information. This service will always stay
+                <a href="https://github.com/binwiederhier/ntfy">free and open</a>.
+                You can read more in the <a href="docs/faq/">FAQs</a> and in the <a href="docs/privacy/">privacy
+                policy</a>.
+            </p>
+
+            <center id="ironicCenterTagDontFreakOut"><i>Made with ❤️ by <a href="https://heckel.io">Philipp C. Heckel</a></i></center>
+        </SiteLayout>
     );
 };
 
diff --git a/web/src/components/Pricing.js b/web/src/components/Pricing.js
new file mode 100644
index 00000000..24532613
--- /dev/null
+++ b/web/src/components/Pricing.js
@@ -0,0 +1,12 @@
+import * as React from 'react';
+import SiteLayout from "./SiteLayout";
+
+const Pricing = () => {
+    return (
+        <SiteLayout>
+            pricing
+        </SiteLayout>
+    );
+};
+
+export default Pricing;
diff --git a/web/src/components/SiteLayout.js b/web/src/components/SiteLayout.js
new file mode 100644
index 00000000..16f66eb0
--- /dev/null
+++ b/web/src/components/SiteLayout.js
@@ -0,0 +1,30 @@
+import * as React from 'react';
+import {NavLink} from "react-router-dom";
+import routes from "./routes";
+import session from "../app/Session";
+
+const SiteLayout = (props) => {
+    return (
+        <div id="site">
+            <nav id="header">
+                <div id="headerBox">
+                    <img id="logo" src="static/img/ntfy.png" alt="logo"/>
+                    <div id="name">ntfy</div>
+                    <ol>
+                        <li><NavLink to={routes.home} activeStyle>Features</NavLink></li>
+                        <li><NavLink to={routes.pricing} activeStyle>Pricing</NavLink></li>
+                        <li><NavLink to="/docs" reloadDocument={true} activeStyle>Docs</NavLink></li>
+                        {session.exists() && <li><NavLink to={routes.signup} activeStyle>Sign up</NavLink></li>}
+                        {!session.exists() && <li><NavLink to={routes.login} activeStyle>Login</NavLink></li>}
+                        <li><NavLink to={routes.app} activeStyle>Open app</NavLink></li>
+                    </ol>
+                </div>
+            </nav>
+            <div id="main">
+                {props.children}
+            </div>
+        </div>
+    );
+};
+
+export default SiteLayout;
diff --git a/web/src/components/routes.js b/web/src/components/routes.js
index 27b36736..b88d8f99 100644
--- a/web/src/components/routes.js
+++ b/web/src/components/routes.js
@@ -3,6 +3,7 @@ import {shortUrl} from "../app/utils";
 
 const routes = {
     home: "/",
+    pricing: "/pricing",
     login: "/login",
     signup: "/signup",
     app: config.appRoot,