From 340f5fc55b3bb0e33ae01c1242512e905b7fe11c Mon Sep 17 00:00:00 2001 From: trevor smith Date: Mon, 10 Feb 2020 21:59:31 -0700 Subject: [PATCH] Remove alert from splash page and add register CTA --- src/components/Index.js | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) diff --git a/src/components/Index.js b/src/components/Index.js index b69bcc8..5294d0b 100644 --- a/src/components/Index.js +++ b/src/components/Index.js @@ -1,29 +1,21 @@ import React from 'react'; import { withRouter } from "react-router" import { Header } from './Header'; +import Button from "./atoms/Button"; export const Index = withRouter((props) => { return (
-

Hawthorn is a place for communities;

-

a platform with commitment to social justice, premised on mutual support and owned by you, the community

- +

Hawthorn is a place for communities; +

+

an alternative to FaceBook/Google Groups, with commitment to social justice, premised on mutual support and owned by you, the community

+

A volunteer team with Code for Denver is building the initial platform now. Please sign up for an account now, explore, and give us feedback on what we have so far.

) })