Skip to content

Commit

Permalink
Merge pull request #222 from persistenceOne/terms_update
Browse files Browse the repository at this point in the history
Update terms and privacy policy
  • Loading branch information
blackpanther1881 authored Nov 9, 2023
2 parents ed249d8 + 2418b32 commit 8ac9407
Show file tree
Hide file tree
Showing 10 changed files with 2,242 additions and 45 deletions.
9 changes: 9 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import AOS from "aos";
import "aos/dist/aos.css";
import Homepage from "./pages/Homepage";
import Ecosystem from "./pages/Ecosystem";
import Terms from "./pages/Terms";
import Privacy from "./pages/privacy";
import "react-multi-carousel/lib/styles.css";
import Faq from "./pages/Faq";
import Xprt from "./pages/Xprt";
Expand Down Expand Up @@ -51,6 +53,13 @@ const App = () => {
component={Summary}
layout={LayoutDefault}
/>
<AppRoute exact path="/terms" component={Terms} layout={LayoutDefault} />
<AppRoute
exact
path="/privacy"
component={Privacy}
layout={LayoutDefault}
/>
</Switch>
);
};
Expand Down
2 changes: 1 addition & 1 deletion src/assets/scss/mediaqueries/_hompage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@
}
.footer .copy-rights{
font-weight: 500;
font-size: 12px;
font-size: 14px;
line-height: 1.314;
color: #70747c;
display: block;
Expand Down
146 changes: 118 additions & 28 deletions src/assets/scss/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/assets/scss/style.css.map

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions src/assets/scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
--------------------------------------------------------------*/
@import "views/summary";

/*--------------------------------------------------------------
# terms page styles
--------------------------------------------------------------*/
@import "views/terms";



/*--------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/assets/scss/views/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ a {

.copy-rights {
font-weight: 500;
font-size: 12px;
font-size: 14px;
line-height: 1.314;
color: #70747c;
display: inline-block;
Expand Down
84 changes: 84 additions & 0 deletions src/assets/scss/views/_terms.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
.terms-section{
padding: 180px 0;
.content{
.title{
font-weight: 700;
font-size: 26px;
line-height: 1.5;
display: flex;
align-items: center;
color: #FFFFFF;
margin-bottom: 1rem;
}
.last-update{
color: #e50913 !important;
}
.data{
margin-bottom: 2.5rem;
.data-heading{
font-weight: 600;
font-size: 22px;
line-height: 25px;
letter-spacing: 0.15668px;
color: #FFFFFF;
margin-bottom: 1.25rem;
margin-top: 1.5rem;
}
.sub-heading{
font-weight: 500;
font-size: 20px;
line-height: 24px;
color: #FFFFFF;
margin-top: 1.5rem;
}
p, ul li, ol li{
font-weight: 300;
font-size: 14px;
line-height: 30px;
color: #A6A6A6;
}
ul li{
b{
color: #FFFFFF;
}
}
.img-section{
margin: auto;
max-width: 500px;
.img-box{
margin-bottom: 1rem;
width: 100%;
}
}

a{
color:#007bff;
}
.buttons{
margin-bottom: 1.5rem;

.primary{
background: transparent;
border-radius: 6px;
padding: 0.5rem 2rem;
font-weight: 600;
transition: all 0.5s ease-in-out;
font-size: 14px;
line-height: 150%;
text-align: center;
text-transform: uppercase;
color: #FCFCFC;
box-shadow: none;
border: 1px solid #303132;
outline: none;
margin-right: 10px;
text-decoration: none;
&:hover{
background: #E50913;
border:1px solid #E50913
}
}
}
}
}
}
Loading

0 comments on commit 8ac9407

Please sign in to comment.