Skip to content
Open
Show file tree
Hide file tree
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
51 changes: 0 additions & 51 deletions client/src/components/Informational/RequestRecyclingTips.js

This file was deleted.

117 changes: 117 additions & 0 deletions client/src/components/Informational/ToolsForTenants.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
import React from 'react';
import { Grid, Row, Col, PageHeader } from 'react-bootstrap';
import CollapsePanel from '../UtilComponents/CollapsePanel';
import Footer from '../Footer/Footer';

const ToolsForTenants = () => (
<div>
<Grid fluid>
<Row>
<Col xs={12} md={10} mdOffset={1}>
<PageHeader className="info-page-header-overrides">Tools for Residents</PageHeader>
<div className="info-text">
<h3 className="info-heading">
<a href="#">Recycling fact sheet:</a>
</h3>
<p>Useful facts that to help convince neighbors to support recycling intiatives.</p>

<h3 className="info-heading">
<a href="#">Posters and flyers:</a>
</h3>
<p>For publicizing campaigns.</p>

<h3 className="info-heading">
<a href="#">Campaing management sheet:</a>
</h3>
<p>
This sheet guides campaign managers through the process, acting as a sort of
"checklist". It is not required, but is a useful way to visualize the process.
</p>

<h3 className="info-heading">
<a href="#">Signature sheet:</a>
</h3>
<p>Sheet to be printed and hung in select areas along with posters.</p>

<h3 className="info-heading">
<a href="#">"How we did it" Case Study:</a>
</h3>
<p>Stories of other residents succesfully campaigning for service.</p>

<h3 className="info-heading">
<a href="#">Recycling Guidelines from Denver:</a>
</h3>
<p>
For both successful and ongoing campaigns. Note the types of materials that could be
recycled.
</p>
</div>

<CollapsePanel
titleText={'FAQs'}
body={
<div>
<div>
<strong>How much time will I need to dedicate?</strong>
<p>(give a baseline or minimum)</p>
</div>

<div className="faq-div">
<strong>How can I get people to sign the petition?</strong>
<p>
(Ideas of where to post locally; digtially post; attending resident meetings and
mixers(if there are ones), newsletter, etc.)
</p>
</div>

<div className="faq-div">
<strong>How should I ask my neighbors to get involved?</strong>
<p>
(Provide fact sheet; examples from case studies; door-to-door flyering, etc.){' '}
</p>
</div>
</div>
}
defaultExpanded
/>

<CollapsePanel
titleText={'Tips for approaching your landlord'}
body={
<ul>
<li>
Make an appointment with your property manager or landlord to talk about your
campaign
</li>
<li>
Print out the signatures and find neighbors who are interested in going to the
meeting with you
</li>
<li>Listen to your property manager's feedback or concerns</li>
<li>Let us know what they said!</li>
</ul>
}
/>
<CollapsePanel
titleText={'Our Landlord ignored or denied our request'}
body={
<p>
Boo! Why? Fill out{' '}
<a
className="info-link"
href="https://docs.google.com/spreadsheets/u/2/d/1LjlhDV17ciP0v_vn3Q5K4CJRm6ENgcZMrv5XTIXzLwY/edit?usp=drive_web&ouid=111725726550951812389"
>
this survey
</a>{' '}
and tell us what the roadblockers towards getting recycling services were.
</p>
}
/>
</Col>
</Row>
</Grid>
<div className="spacer" />
<Footer />
</div>
);
export default ToolsForTenants;
2 changes: 1 addition & 1 deletion client/src/components/Navigation/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const NavBar = ({
<MenuItem eventKey={2.1}>Property Manager Resources</MenuItem>
</LinkContainer>
<LinkContainer to="/tips-for-requesting">
<MenuItem eventKey={2.2}>Tips for Requesting</MenuItem>
<MenuItem eventKey={2.2}>Tools for Tenants</MenuItem>
</LinkContainer>
</NavDropdown>
<LinkContainer to="/who-are-we">
Expand Down
4 changes: 2 additions & 2 deletions client/src/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import CreateCampaignStep2 from './components/CreateCampaignStep2';
import CreateCampaignStep3 from './components/CreateCampaignStep3';
import HowItWorks from './components/HowItWorks/HowItWorks';
import CampaignContainer from './containers/CampaignContainer';
import RequestRecyclingTips from './components/Informational/RequestRecyclingTips';
import ToolsForTenants from './components/Informational/ToolsForTenants';
import DenverInfo from './components/Informational/DenverInfo';
import ManagerResources from './components/Informational/ManagerResources';
import DenverLearnMore from './components/Informational/DenverLearnMore';
Expand Down Expand Up @@ -49,7 +49,7 @@ export default (
/>
<Route
path="/tips-for-requesting"
getComponent={(location, callback) => callback(null, RequestRecyclingTips)}
getComponent={(location, callback) => callback(null, ToolsForTenants)}
/>
<Route
path="/denver-recycling-info"
Expand Down
32 changes: 32 additions & 0 deletions client/src/stylesheets/components/_ToolsForTenants.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
@import "../base/colors";
@import '../base/fonts';

.page-header {
text-align: center;
}

h1 {
background-color: white;
color: $dark-blue;
padding: 1% 0;
}

.info-text > p {
font-style: italic;
margin-top: .25%;
}

.faq-div {
margin-top: 2%;
}

strong {
font-weight: bold;
}

.spacer {
margin: 5%;
}



3 changes: 2 additions & 1 deletion client/src/stylesheets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
'components/TenantOrPMChoice',
'components/RecyclingInfo',
'components/AdminAddSigantureModal',
'components/NotFound';
'components/NotFound',
'components/ToolsForTenants';


//Do not change the order of these imports:
Expand Down