Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TEST DONT MERGE #78

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 10 additions & 18 deletions src/components/Index.js
Original file line number Diff line number Diff line change
@@ -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 (
<div>
<Header />
<p className="lead text-center">Hawthorn is a place for communities;</p>
<p className="text-center">a platform with commitment to social justice, premised on mutual support and owned by you, the community</p>
<div class="alert alert-warning" role="alert">
<h1 className="display-4 text-center">Hawthorn's Transition to Small Private Groups</h1>
<p className="text-center"><u>Updated January 20, 2020</u></p>
<p className="text-center">
In all of the user interviews we have conducted with local community leaders, similar feature requests around private groups have been made. These requests describe a private communication and administrative tool to compliment and aid in the facillitation of real-world small groups (bipoc and qtpoc groups, women's and men's groups, an antiracist group, people returning from therapeutic retreats who need to stay in contact and integrate the retreat). Hawthorn direction will pivot away from public communities with default user anonymity to these private, more intimate communities with a required user who may reveal details of their identity at their discretion.
</p>
<p className="text-center">
The pattern described by people in these user interviews is common to how small groups have organized historically for change work, such as the consciousness raising feminist groups in the 1960s, affinity groups, and communities of practice.
</p>
<p className="text-center">
With these requests and the nature of the groups in mind, we will be modeling this feature after the patterns identified in the article <a href="https://docs.google.com/document/d/1vUHr_Q18GwJ8Lsp49J3gaIrOp3xi3Cv0PmHeSMPMlSQ/edit?usp=sharing">"What are Alchemy Pods?" by Adam Brock</a>.
</p>
<p className="text-center">
This feature is currently under construction and may be complete by the end of February. If you would like to be notified when the feature has been released, please use <a href="/contact-us">the contact form</a> to share your email address and request to receive newsletters (you can cancel at anytime and your information will never be shared).
</p>
</div>
<h1 className="display-4 text-center">Hawthorn is a place for communities;
<Button
type="primary"
onClick={() => props.history.push("/register")}
text="Sign up"
/>
</h1>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here is comment

<p className="lead text-center">an alternative to FaceBook/Google Groups, with commitment to social justice, premised on mutual support and owned by you, the community</p>
<p className="text-center">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.</p>
</div>
)
})