-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2024 Footer and small homepage fix (#267)
* Add footer to homepage and replace facebook with tiktok * fix mobile homepage star background
- Loading branch information
Showing
6 changed files
with
37 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
import React from 'react'; | ||
import './Footer.scss'; | ||
import React from "react"; | ||
import "./Footer.scss"; | ||
|
||
function Footer() { | ||
return ( | ||
<footer id="footer"> | ||
<a href="mailto:[email protected]" target="_top"> | ||
<i className="fa fa-envelope"></i> | ||
</a> | ||
<a href="https://www.facebook.com/venushacksUCI/" target="_blank" rel="noopener noreferrer"> | ||
<i className="fa fa-facebook"></i> | ||
</a> | ||
<a href="https://www.instagram.com/venushacksuci" target="_blank" rel="noopener noreferrer"> | ||
<i className="fa fa-instagram"></i> | ||
</a> | ||
</footer> | ||
) | ||
return ( | ||
<footer id="footer"> | ||
<a href="mailto:[email protected]" target="_top"> | ||
<i className="fa fa-envelope"></i> | ||
</a> | ||
<a | ||
href="https://www.tiktok.com/@venushacksuci?_t=8mcE7XPT13b&_r=1" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<i className="fa-brands fa-tiktok"></i> | ||
</a> | ||
<a | ||
href="https://www.instagram.com/venushacksuci" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<i className="fa-brands fa-instagram"></i> | ||
</a> | ||
</footer> | ||
); | ||
} | ||
|
||
export default 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
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