mirror of
https://github.com/Rushilwiz/openly.git
synced 2025-04-09 14:50:18 -04:00
145 lines
5.3 KiB
JavaScript
145 lines
5.3 KiB
JavaScript
import React, { useState, useEffect } from "react";
|
|
|
|
const Main = (props) => {
|
|
return (
|
|
<div>
|
|
<section
|
|
id="reinvest"
|
|
style={{
|
|
backgroundImage: "url('images/background.jpg')",
|
|
backgroundRepeat: "no-repeat",
|
|
backgroundSize: "cover",
|
|
height: "690px",
|
|
paddingTop: "80px",
|
|
}}
|
|
>
|
|
<div className="container">
|
|
<br />
|
|
<div class="text-center">
|
|
<img
|
|
class="text-center img-fluid"
|
|
src="images/logo.png"
|
|
width="350px"
|
|
/>
|
|
</div>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<h3 className="text-white bg-primary rounded-lg shadow-lg p-3 mb-5">
|
|
Digitally empowering underrepresented minorities in politics
|
|
</h3>
|
|
</div>
|
|
</section>
|
|
<section id="about" className="p-4">
|
|
<div className="container">
|
|
<h1 className="d-flex justify-content-center m-2 p-2">About Us</h1>
|
|
<p className="d-flex justify-content-center m-2 p-2">
|
|
ThinkOpenly is a politics exchange platform, aiming to create a
|
|
professional and efficient connection between underrepresented
|
|
minority groups and politics. Community members can post questions
|
|
or concerns and other members can +1 the post. Professional
|
|
legislators or lawmakers can then answer or attempt to enforce laws
|
|
to support these concerns. To make this process as effective as
|
|
possible, we use NLP Machine Learning to suggest other articles or
|
|
posts to users based on previous likes. Our platform also offers
|
|
suggestions for events that coincide with their interests and free
|
|
time via Google Calendar.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
<section id="services" className="">
|
|
<div className="bg-dark text-white p-4">
|
|
<div className="container">
|
|
<h1 className="d-flex justify-content-center m-2 p-4">
|
|
Our Services
|
|
</h1>
|
|
|
|
<div className="row exp-grids py-3 d-inline-flex justify-content-center">
|
|
<div className="col-lg-5 col-md-7 bg-white text-dark m-2 p-4">
|
|
<img src="images/posts.jpg" alt=" " className="img-fluid" />
|
|
<div className="exp wthree">
|
|
<h5>Browse Posts</h5>
|
|
<div className="clearfix"></div>
|
|
<p>
|
|
Easily browse through NLP generated recommended posts in
|
|
your feed. These posts match your previous interests and
|
|
recent trending political and social subjects.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="col-lg-5 col-md-7 bg-white text-dark m-2 p-4">
|
|
<img src="images/events.jpg" alt=" " className="img-fluid" />
|
|
<div className="exp wthree">
|
|
<h5>Browse Events</h5>
|
|
<div className="clearfix"></div>
|
|
|
|
<p>
|
|
Browse local community political events that match your
|
|
political interests in order to best advocate your concerns
|
|
and have your voice heard.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="col-lg-5 col-md-7 bg-white text-dark m-2 p-4">
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<img src="images/post.jpg" alt=" " className="img-fluid" />
|
|
<div className="exp wthree">
|
|
<br />
|
|
<br />
|
|
<br />
|
|
|
|
<h5>Discussion Thread</h5>
|
|
<div className="clearfix"></div>
|
|
|
|
<p>
|
|
View someone's post and leave a like or comment to further
|
|
discuss the thread or show your support. Each like or
|
|
comment will make your feed give more posts or events that
|
|
are similar.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="col-lg-5 col-md-7 bg-white text-dark m-2 p-4">
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<img
|
|
src="images/createpost.jpg"
|
|
alt=" "
|
|
className="img-fluid"
|
|
/>
|
|
<div className="exp wthree">
|
|
<br />
|
|
<br />
|
|
<br />
|
|
|
|
<h5>Create Posts</h5>
|
|
<div className="clearfix"></div>
|
|
|
|
<p>
|
|
Create your own post anonymously for free and easily. Your
|
|
post will be seen by many others as well as politicians that
|
|
can possibly advocate and recognize your interests for your
|
|
given enough support.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section id="support" className="m-2">
|
|
<div className="container">
|
|
<h1 className="d-flex justify-content-center m-2 p-4">Support</h1>
|
|
<h4>Contact:</h4>
|
|
<p>@gmail.com</p>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Main;
|