Skip to content

Commit

Permalink
Merge pull request #3760 from ivanko22/gitHubLink
Browse files Browse the repository at this point in the history
Make GitHub Link clickable on Terms of Use Page
  • Loading branch information
DaleMcGrew authored Oct 23, 2023
2 parents 9cb207a + cdb4f50 commit 091ee3f
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions src/js/common/components/TermsOfServiceBody.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import React, { Component } from 'react';
import React, { Component, Suspense } from 'react';
import { Link } from 'react-router-dom';
import styled from 'styled-components';
import { renderLog } from '../utils/logging';

const OpenExternalWebSite = React.lazy(() => import(/* webpackChunkName: 'OpenExternalWebSite' */ './Widgets/OpenExternalWebSite'));


export default class TermsOfServiceBody extends Component {
static getProps () {
return {};
Expand All @@ -13,7 +16,7 @@ export default class TermsOfServiceBody extends Component {
return (
<div>
<ContentTitle>Terms of Service</ContentTitle>
<p><strong>Last updated: August 12th, 2022</strong></p>
<p><strong>Last updated: October 23rd, 2023</strong></p>

<h2>Overview</h2>
<p>This website (also packaged in mobile apps) is operated by We Vote USA. Throughout the site, the terms “We Vote”, “we”, “us” and “our” refer to We Vote USA. We Vote USA offers this website, including all information, tools and services available from this site to you, the user, conditioned upon your acceptance of all terms, conditions, policies and notices stated here.</p>
Expand All @@ -27,7 +30,20 @@ export default class TermsOfServiceBody extends Component {
<p>A breach or violation of any of the Terms will result in an immediate termination of your Services.</p>
<h2>General Conditions</h2>
<p>You agree not to reproduce, duplicate, copy, sell, resell or exploit any portion of the Service, use of the Service, or access to the Service or any contact on the website through which the service is provided, without express written permission by us.</p>
<p>We Vote grants permission to copy the software that powers this website, made available at https://github.com/WeVote, under the MIT License.</p>
<p>
We Vote grants permission to copy the software that powers this website, made available at
{' '}
<Suspense fallback={<></>}>
<OpenExternalWebSite
linkIdAttribute="wevoteGitHub"
url="https://github.com/WeVote"
target="_blank"
body={<span>https://github.com/WeVote</span>}
/>
</Suspense>
, under the MIT License.
{' '}
</p>
<p>The headings used in this agreement are included for convenience only and will not limit or otherwise affect these Terms.</p>
<h2>Accuracy, Completeness and Timeliness of Information</h2>
<p>We are not responsible if information made available on this site is not accurate, complete or current. The material on this site is provided for general information only and should not be relied upon or used as the sole basis for making decisions without consulting primary, more accurate, more complete or more timely sources of information. Any reliance on the material on this site is at your own risk.</p>
Expand Down

0 comments on commit 091ee3f

Please sign in to comment.