What is the world but vibrations?
Vibrations that synchronize and tie it together, running free forever.
-));
+);
diff --git a/src/design-system/templates/help-page/HelpPage.tsx b/src/design-system/templates/help-page/HelpPage.tsx
index f4d4c49..10a371e 100644
--- a/src/design-system/templates/help-page/HelpPage.tsx
+++ b/src/design-system/templates/help-page/HelpPage.tsx
@@ -1,7 +1,7 @@
import * as React from 'react';
import { AppShell } from 'roleypoly/src/design-system/organisms/app-shell';
-import { HelpPageBase } from 'roleypoly/src/design-system/organisms/help-page-base';
-import { RoleypolyUser } from '@roleypoly/rpc/shared';
+import { HelpPageBase } from 'roleypoly/src/design-system/molecules/help-page-base';
+import { RoleypolyUser } from 'roleypoly/src/design-system/shared-types';
type HelpPageProps = {
user: RoleypolyUser.AsObject | null;
diff --git a/src/design-system/templates/help-page/index.ts b/src/design-system/templates/help-page/index.ts
new file mode 100644
index 0000000..7406751
--- /dev/null
+++ b/src/design-system/templates/help-page/index.ts
@@ -0,0 +1 @@
+export * from './HelpPage';
diff --git a/src/design-system/templates/landing/BUILD.bazel b/src/design-system/templates/landing/BUILD.bazel
new file mode 100644
index 0000000..45a41f8
--- /dev/null
+++ b/src/design-system/templates/landing/BUILD.bazel
@@ -0,0 +1,11 @@
+load("//hack/bazel/js:react.bzl", "react_library")
+
+package(default_visibility = ["//visibility:public"])
+
+react_library(
+ name = "landing",
+ deps = [
+ "//src/design-system/organisms/app-shell",
+ "//src/design-system/organisms/landing",
+ ],
+)
diff --git a/src/design-system/templates/landing/Landing.stories.tsx b/src/design-system/templates/landing/Landing.stories.tsx
new file mode 100644
index 0000000..99e03e4
--- /dev/null
+++ b/src/design-system/templates/landing/Landing.stories.tsx
@@ -0,0 +1,8 @@
+import * as React from 'react';
+import { LandingTemplate } from './Landing';
+
+export default {
+ title: 'Templates/Landing',
+};
+
+export const Landing = () =>