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

Update footer.tsx so that it has links #258

Merged
merged 1 commit into from
Dec 21, 2023
Merged
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
26 changes: 16 additions & 10 deletions ui/src/shared/components/footer/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,27 @@ const MainFooter: FunctionComponent<{}> = (props) => {
</div>
<div className="footer__quickAccessLinks">
<div className="footer__footerLinks">
<a>About Open Climate</a>
<a href="https://www.openearth.org/projects/openclimate" target="_blank" rel="noopener noreferrer">About Open Climate</a>
</div>
<div className="footer__footerLinks">
<a>Contribution Guide</a>
<a href="https://github.com/Open-Earth-Foundation/OpenClimate/blob/develop/CONTRIBUTING_DATA.md" target="_blank" rel="noopener noreferrer">Contribution Guide</a>
</div>
<div className="footer__footerLinks">
<a>Go to GitHub</a>
<a href="https://github.com/Open-Earth-Foundation/OpenClimate" target="_blank" rel="noopener noreferrer">Go to GitHub</a>
</div>
<div className="footer__footerLinks">
<a>CAD2.0 Community</a>
<a href="https://cadalog.webflow.io/" target="_blank" rel="noopener noreferrer">CAD2.0 Community</a>
</div>
<div className="footer__footerLinks">
<a>Read the Docs</a>
<a href="https://github.com/Open-Earth-Foundation/OpenClimate/blob/develop/api/API.md" target="_blank" rel="noopener noreferrer">Read the Docs</a>
</div>
<div className="footer__footerLinks">
<a>Python Client Docs</a>
<a href="https://openclimate-pyclient.readthedocs.io/en/latest/index.html" target="_blank" rel="noopener noreferrer">Python Client Docs</a>
</div>
</div>
<div className="footer__cta">
<button className="footer__ctaBtnA">CONTACT US</button>
<button className="footer__ctaBtnB">DONATE NOW</button>
<a href="mailto:[email protected]?subject=Contact%20From%20-%20OpenClimate" className="footer__ctaBtnA" target="_blank" rel="noopener noreferrer">CONTACT US</a>
<a href="https://www.openearth.org/donations" className="footer__ctaBtnB">DONATE NOW</a>
</div>
</div>
<hr className="footer__hr" />
Expand All @@ -49,10 +49,16 @@ const MainFooter: FunctionComponent<{}> = (props) => {
This site is a beta version, we appreciate all feedback to
improve the platform
</span>
<span className="footer__feedBackText">Send Feedback</span>
<span className="footer__feedBackText">
<a href="mailto:[email protected]?subject=Feedback%20for%20OpenClimate">
Send Feedback
</a>
</span>
</div>
<div className="footer__OEFLogo">
<img src="/poweredBy.png" alt="OEFLogo" />
<a href="https://www.openearth.org/" target="_blank" rel="noopener noreferrer">
<img src="/poweredBy.png" alt="OEFLogo" />
</a>
</div>
</div>
</div>
Expand Down
Loading