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

working on footer (draft version) #83

Open
wants to merge 10 commits into
base: development
Choose a base branch
from
Open
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
6 changes: 6 additions & 0 deletions package-lock.json

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

Binary file added src/webapp/public/images/app-store.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/webapp/public/images/google-play.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
87 changes: 86 additions & 1 deletion src/webapp/src/components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,91 @@
import React from 'react';
import { Row, Col, Container } from 'react-bootstrap';
import { FaTwitter } from "react-icons/fa";
import { FaFacebookSquare } from "react-icons/fa";
import { FaYoutube } from "react-icons/fa";
import { AiFillInstagram } from "react-icons/ai"

const Footer = () => {
return <footer>{/* Add footer details here */}</footer>;
return (
<div className="footer pt-5 pb-2 mt-5">
<div className="container">

<Container className="contact-us">
<div className="row mt-2 footerCon-body">
{/* <Row className='contact-us'>
<Col lg={2}>
<h2>Contact Us</h2>
</Col>
<Col lg={3} >
<div className='d-flex'>

<ul className="social-icons d-flex pl-0">
<a href="#"><FaTwitter size={20} /></a>
<a href="#"><FaYoutube size={20} /></a>
<a href="#"><FaFacebookSquare size={20} /></a>
<a href="#"><AiFillInstagram size={20} /></a>
</ul>
</div>
</Col>
<Col lg={4}>
<h2>Download Our Application</h2>
</Col>
<Col lg={3} className='mb-3 pl-0'>
<div className='d-flex'>

<a href="#" className='mx-2'><img src="/images/google-play.png" height={35} alt="Google Play" /></a>
<a href="#"><img src="/images/app-store.png" height={35} alt="App Store" /></a>
</div>
</Col>
</Row> */}
<Row className='contact-us mt-3'>
<Col lg={3}>
<div className="single_footer">
<h4>About DevCamper</h4>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Our Team</a></li>
</ul>
</div>
</Col>
<Col lg={3}>
<div className="single_footer single_footer_address">
<h4>Bootcamps</h4>
<ul>
<li><a href="#">Bootcamp Locations</a></li>
<li><a href="#">Courses</a></li>
</ul>
</div>
</Col>
<Col lg={3}>
<div className="single_footer single_footer_address">
<h4>Support</h4>
<ul>
<li><a href="#">Contact Us</a></li>
<li><a href="#">FAQs</a></li>
</ul>
</div>
</Col>
<Col lg={3}>
<div className="single_footer single_footer_address">
<h4>Community</h4>
<ul>
<li><a href="#">Reviews</a></li>
</ul>
</div>
</Col>
</Row>
</div>
<Row className='contact-us'>
<Col lg={12}>
<p className="copyright text-center">All Rights are Reserved by DevCamper Ltd.2024.</p>
</Col>
</Row>
</Container>
</div>
{/* <!--- END CONTAINER --> */}
</div>
);
};

export default Footer;
21 changes: 21 additions & 0 deletions src/webapp/src/footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.footer {
background-color: black;
color: white;
}

.footer .container {
max-width: 1400px
}

.social-icons a{
color: white;
margin: 10px;
}

.single_footer ul li a {
color: white;
}

.footerCon-body {
margin-bottom: 5rem;
}
1 change: 1 addition & 0 deletions src/webapp/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import 'react-toastify/dist/ReactToastify.css';
import 'bootstrap/dist/css/bootstrap.min.css';
import './bootstrap.css';
import './index.css';
import './footer.css'

import App from './App';

Expand Down