From 85c05769645617838204cfb16ae7e45175193595 Mon Sep 17 00:00:00 2001 From: dallasjc <39286778+dallasjc@users.noreply.github.com> Date: Fri, 4 Oct 2019 11:00:10 -0500 Subject: [PATCH] Create about us page --- routes.js | 1 + views/about-page.js | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 views/about-page.js diff --git a/routes.js b/routes.js index 5ecc552..b1f7d61 100644 --- a/routes.js +++ b/routes.js @@ -29,6 +29,7 @@ module.exports = { '/get_started/profile': () => import('./views/get-started-profile-page'), '/twitter/:username': () => import('./views/profile-page'), '/policies': () => import('./views/policies-page'), + '/about': () => import('./views/about-page'), '/metrics': () => import('./views/metrics-page'), '/:username': () => import('./views/profile-page'), '/:username/:shortId': () => import('./views/measure-details-page'), diff --git a/views/about-page.js b/views/about-page.js new file mode 100644 index 0000000..5d4cc4f --- /dev/null +++ b/views/about-page.js @@ -0,0 +1,37 @@ +const { html } = require('../helpers') + +module.exports = () => { + return html` +
+
+ +
+

About Liquid US

+

A project of Liquid Democracy Technologies, PBC, Liquid US combines modern digital tools with an idea called liquid democracy to empower voters in the legislative process, fight corruption, and hold legislators accountable.

+

Find, add, and speak out on bills or petitions for any level of government. We publicly track comments and votes, update relevant legislators, and measure voter support and opposition by district, city and state.

+
+
+

What is liquid democracy?

+

Liquid democracy combines elements of direct and electoral democracy to create a better system of representation. Pick anyone you trust to represent you and represent others when you vote.

+ +

Choose and rank your representatives. If you don’t vote on a proposal, the top person on your list who has voted would determine your vote as well. If none of them vote, then their representatives determine your vote. Visit demo.liquid.us to see how this works.

+ +

This network of trusted representatives allows us to gauge public opinion on any specific policy proposal.

+
+
+

About Liquid Democracy Technologies

+

Liquid Democracy Technologies is a public benefit corporation with a specific mandate to make liquid democracy available nationwide.

+ +

We are dedicated to building the tools that are needed for this to be successful. The ability to find, add, debate, and vote on legislation, as well as choose representatives, will always be free.

+ +

Eventually, LDT will sell those tools to unions, corporations, and other private entities for use in internal decision-making.

+

Our investors, who are private at their request, are carefully vetted to ensure that they align with and support our mission. They have no influence or control over LDT itself.

+
+
+
+ ` +}