-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from sahhoArjun097/main
ADD FOOTER SECTION TO THE PAGE #14
- Loading branch information
Showing
7 changed files
with
395 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React from 'react' | ||
import './footer.css'; | ||
|
||
function Footer() { | ||
return ( | ||
<footer> | ||
<div class="footer-content"> | ||
<h3>Ready to Elevate Your Future?</h3> | ||
<p> | ||
Dive into our resources for education, career opportunities, and financial assistance. Unlock your potential with us! | ||
</p> | ||
<div class="footer-buttons"> | ||
<button class="btn" id="explore-education">Explore Education</button> | ||
<button class="btn">Start Your Career</button> | ||
<button class="btn">Learn About Grants</button> | ||
</div> | ||
</div> | ||
<hr /> | ||
<div class="social-links"> | ||
<a href="https://www.instagram.com" target="_blank" rel="noopener noreferrer">Instagram</a> | ||
<a href="https://www.linkedin.com" target="_blank" rel="noopener noreferrer">LinkedIn</a> | ||
<a href="https://www.twitter.com" target="_blank" rel="noopener noreferrer">Twitter</a> | ||
<a href="https://www.github.com" target="_blank" rel="noopener noreferrer">GitHub</a> | ||
</div> | ||
<p class="copyright">© 2024 Edu@enyanjyoti. All rights reserved.</p> | ||
</footer> | ||
|
||
|
||
|
||
) | ||
} | ||
|
||
export default Footer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.