Skip to content

Commit

Permalink
Merge pull request #8 from 4GeeksAcademy/alberto_footer
Browse files Browse the repository at this point in the history
footer alberto
  • Loading branch information
R3dH4wk44 authored Apr 19, 2024
2 parents a11f7e0 + a23ef0a commit cf2b592
Show file tree
Hide file tree
Showing 5,574 changed files with 205,295 additions and 8 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
35 changes: 35 additions & 0 deletions about-us-astrodevs/src/components/Footer/Footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
.b-example-divider{

height: 3rem;
background-color: grey;
box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, .1), inset 0 0.125em 0.5em rgba(0, 0, 0, .15)
}
#contenedor-footer{
background-color: black;
width:100vw;
}
.nav-footer{
padding-left: 7rem;
}
h5{
text-align: left;
font-size: 1.1rem;
color: lightgray;
margin-bottom: 1.5rem;
}
form, ul{
text-align: left;
}
p,li{
color: lightgray;
font-size: .9rem;
}
a{
text-decoration: none;
}
.copyright-txt{
text-align: center;
color: grey;
margin-top: 4rem;
font-size: .8rem;
}
62 changes: 56 additions & 6 deletions about-us-astrodevs/src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,60 @@
import React from "react";
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faInstagram, faTelegram, faFacebookF, faTwitter } from '@fortawesome/free-brands-svg-icons'
import './Footer.css';

export const Footer = () => {

return (
<>

</>
);
}
return (
<>
<div className="b-example-divider"></div>
<div className="container" id="contenedor-footer">
<footer className="py-5">
<div className="row border-bottom border-secondary pb-5">
<div className="col-2 nav-footer">
<h5>Quick Links</h5>
<ul className="nav flex-column">
<li className="nav-item mb-2"><a href="">Privacy Policy</a></li>
<li className="nav-item mb-2"><a href="">Terms and Conditions</a></li>
<li className="nav-item mb-2"><a href="">AstroTeam.com</a></li>
</ul>
</div>
<div className="col-2 nav-footer">
<h5>Contact Us</h5>
<ul className="nav flex-column">
<li className="nav-item mb-2"><a href="">[email protected]</a></li>
<li className="nav-item mb-2">+34 628328332</li>
</ul>
</div>

<div className="col-2 nav-footer">
<h5>Follow</h5>
<ul className="nav flex-column">
<li className="nav-item mb-2"><FontAwesomeIcon icon={faInstagram}/> Instagram </li>
<li className="nav-item mb-2"><FontAwesomeIcon icon={faTelegram} /> Telegram</li>
<li className="nav-item mb-2"><FontAwesomeIcon icon={faFacebookF}/> Facebook</li>
<li className="nav-item mb-2"><FontAwesomeIcon icon={faTwitter} /> Twitter</li>

</ul>
</div>

<div className="col-6 nav-footer">
<form action="">
<h5 className="">Susbcribe to our page</h5>
<p>Monthly digest of what`s new and interesting for ur</p>
<div className="d-flex flex-row gap-3">

<input type="text" className="form-control w-50" placeholder="Email Address" />
<button type="button" className="btn btn-light">Subscribe</button>
</div>
</form>
</div>
</div>
<p className="copyright-txt">Copyright C 2024. AstroTeam Integrated Solutions Limited. All rights reserved.</p>
</footer>
</div>
</>
);
}


3 changes: 1 addition & 2 deletions about-us-astrodevs/src/components/Form/Form.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import './Form.css';
import { Title } from './title/Title';
import { Input } from './info_input/Input';

const Form = () => {
export const Form = () => {

return (
<>
Expand All @@ -14,4 +14,3 @@ import { Input } from './info_input/Input';
);
};

export default Form
1 change: 1 addition & 0 deletions node_modules/.bin/loose-envify

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

120 changes: 120 additions & 0 deletions node_modules/.package-lock.json

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

Loading

0 comments on commit cf2b592

Please sign in to comment.