mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-08 03:28:50 +00:00
Added a header, all links except github only refresh the page. Also added header&footer to App and removed unneccessary login
This commit is contained in:
parent
312e925c1b
commit
6d1b144d14
4 changed files with 124 additions and 35 deletions
36
code/frontend/src/Footer.tsx
Normal file
36
code/frontend/src/Footer.tsx
Normal file
|
@ -0,0 +1,36 @@
|
|||
import React from "react";
|
||||
import "./Footer.css";
|
||||
|
||||
function Footer() {
|
||||
return (
|
||||
<footer className="footer">
|
||||
<div className="footer-left">
|
||||
<a href="" className="footer-link feather">
|
||||
<img src="/assets/icons/feather_black.svg" alt="Feather icon" />
|
||||
<span>Feather Feed</span>
|
||||
</a>
|
||||
<a href="https://github.com" target="_blank " className="footer-link github">
|
||||
<img src="/assets/icons/github.svg" alt="GitHub icon" />
|
||||
<span>GitHub</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div className="footer-right">
|
||||
<div className="footer-column">
|
||||
<a href="">Home</a>
|
||||
<a href="">About</a>
|
||||
</div>
|
||||
<div className="footer-column">
|
||||
<a href="">Login</a>
|
||||
<a href="">Sign up</a>
|
||||
</div>
|
||||
<div className="footer-column">
|
||||
<a href="">Create Post</a>
|
||||
<a href="">Feed</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
|
||||
export default Footer;
|
Loading…
Add table
Add a link
Reference in a new issue