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

feat: add email on site #70

Merged
merged 4 commits into from
Feb 10, 2021
Merged
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
8 changes: 4 additions & 4 deletions packages/site/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2674,7 +2674,7 @@ footer.footer {
.footer-post-details:after {
height: 31px;
width: 69px;
background: #fff;
background: #f7f6f9;
content: "";
position: absolute;
bottom: -3px;
Expand All @@ -2694,19 +2694,19 @@ footer.footer {
left: 33px;
}

.twetter-post {
.twitter-post {
padding-left: 20px;
}

.twetter-post span {
.twitter-post span {
margin-right: 7px;
color: #f77ade;
font-size: 20px;
}
.footer-post-details {
padding: 32px 20px 36px 40px;
position: relative;
background: #fff;
background: #f7f6f9;
font-size: 14px;
line-height: 26px;
margin-bottom: 20px;
Expand Down
58 changes: 20 additions & 38 deletions packages/site/components/Footer.js
Original file line number Diff line number Diff line change
@@ -1,55 +1,29 @@
import footerBg from '../assets/img/footer-bg.png'
import footerLogo from '../assets/img/logo.png'

const Footer = () => {
return (
<footer className="footer">
<div className="footerbg">
<img src={footerBg} className="svg" alt="" />
</div>
<div className="footer-top pt-120 pb-110">
<div className="container">
<div className="row">
<div className="col-lg-3 col-sm-6">
<div className="footer-widget">
<div className="footer-logo">
<a href="index.html">
<img src={footerLogo} alt="" />
</a>
<img src={footerLogo} alt="" />
</div>
<p>
Skolplattformen utvecklas av föräldrar för föräldrar. Vill du
hjälpa till? Kom till vår{' '}
<a href="https://github.com/kolplattformen">Github</a>, där
finns all källkod och även uppgifter att ta tag i, vi behöver
hjälp med allt från illustrationer, UX, Design och
hjälp med allt från illustrationer, UX, design och
programmering. Vi har även en Discord där vi hjälps åt.
</p>

<div className="footer-social-area">
<ul className="social-icons social-icons-light nav">
<li>
<a href="#" target="_blank">
<i className="fa fa-facebook-f"></i>
</a>
</li>
<li>
<a href="#" target="_blank">
<i className="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="#" target="_blank">
<i className="fa fa-google-plus"></i>
</a>
</li>
<li>
<a href="#" target="_blank">
<i className="fa fa-linkedin"></i>
</a>
</li>
</ul>
</div>
<p>
<a href="mailto:info@skolplattformen.org">
info@skolplattformen.org
</a>
</p>
</div>
</div>

Expand All @@ -63,28 +37,36 @@ const Footer = () => {
<ul className="address-list">
<li>
<span>
<i className="fa fa-twitter"></i>
<i className="fa fa-twitter"></i>
</span>
<a href="https://twitter.com/@landgren">
Christian Landgren
</a>
</li>
<li>
<span>
<i className="fa fa-twitter"></i>
<i className="fa fa-twitter"></i>
</span>
<a href="https://twitter.com/@erikhellman">
Erik Hellman
</a>
</li>
<li>
<span>
<i className="fa fa-twitter"></i>
<i className="fa fa-twitter"></i>
</span>
<a href="https://twitter.com/@johanobrink">
Johan Öbrink
</a>
</li>
<li>
<span>
<i className="fa fa-twitter"></i>
</span>
<a href="https://twitter.com/@oppnaskolplatt">
Öppna Skolplattformen
</a>
</li>
</ul>
</div>
</div>
Expand Down Expand Up @@ -116,12 +98,12 @@ const Footer = () => {
<div className="col-lg-3 col-sm-6">
<div className="footer-widget">
<div className="widget-body">
<div className="twetter-post-inner">
<div className="twitter-post-inner">
<div className="footer-post-details">
@iteam1337 Digitalisering på riktigt. <br />
<a href="https://iteam.se">https://iteam.se</a>
</div>
<div className="twetter-post">
<div className="twitter-post">
<span>
<i className="fa fa-twitter"></i>
</span>
Expand Down