All files / owid-grapher/site SiteFooter.tsx

100% Statements 109/109
100% Branches 1/1
100% Functions 1/1
100% Lines 109/109

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 2531x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x                                                                                                                                                                                                                                                                                                
import * as React from "react"
import { webpackUrl } from "../site/webpackUtils"
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
import { faAngleRight } from "@fortawesome/free-solid-svg-icons/faAngleRight"
 
interface SiteFooterProps {
    hideDonate?: boolean
    baseUrl: string
}
 
export const SiteFooter = (props: SiteFooterProps) => (
    <>
        {!props.hideDonate && (
            <section className="donate-footer">
                <div className="wrapper">
                    <div className="owid-row flex-align-center">
                        <div className="owid-col owid-col--lg-3 owid-padding-bottom--sm-3">
                            <p>
                                Our World in Data is free and accessible for
                                everyone.
                            </p>
                            <p>Help us do this work by making a donation.</p>
                        </div>
                        <div className="owid-col owid-col--lg-1">
                            <a
                                href="/donate"
                                className="owid-button donate-button"
                                data-track-note="donate-footer"
                            >
                                <span className="label">Donate now</span>
                                <span className="icon">
                                    <FontAwesomeIcon icon={faAngleRight} />
                                </span>
                            </a>
                        </div>
                    </div>
                </div>
            </section>
        )}
        <footer className="site-footer">
            <div className="wrapper">
                <div className="owid-row">
                    <div className="owid-col owid-col--lg-1">
                        <ul>
                            <li>
                                <a
                                    href="/about"
                                    data-track-note="footer-navigation"
                                >
                                    About
                                </a>
                            </li>
                            <li>
                                <a
                                    href="/about#contact"
                                    data-track-note="footer-navigation"
                                >
                                    Contact
                                </a>
                            </li>
                            <li>
                                <a
                                    href="/feedback"
                                    data-track-note="footer-navigation"
                                >
                                    Feedback
                                </a>
                            </li>
                            <li>
                                <a
                                    href="/jobs"
                                    data-track-note="footer-navigation"
                                >
                                    Jobs
                                </a>
                            </li>
                            <li>
                                <a
                                    href="/funding"
                                    data-track-note="footer-navigation"
                                >
                                    Funding
                                </a>
                            </li>
                            <li>
                                <a
                                    href="/about/how-to-use-our-world-in-data"
                                    data-track-note="footer-navigation"
                                >
                                    How to use
                                </a>
                            </li>
                            <li>
                                <a
                                    href="/donate"
                                    data-track-note="footer-navigation"
                                >
                                    Donate
                                </a>
                            </li>
                            <li>
                                <a
                                    href="/privacy-policy"
                                    data-track-note="footer-navigation"
                                >
                                    Privacy policy
                                </a>
                            </li>
                        </ul>
                    </div>
                    <div className="owid-col owid-col--lg-1">
                        <ul>
                            <li>
                                <a
                                    href="/blog"
                                    data-track-note="footer-navigation"
                                >
                                    Latest publications
                                </a>
                            </li>
                            <li>
                                <a
                                    href="/charts"
                                    data-track-note="footer-navigation"
                                >
                                    All charts
                                </a>
                            </li>
                        </ul>
                        <ul>
                            <li>
                                <a
                                    href="https://twitter.com/OurWorldInData"
                                    data-track-note="footer-navigation"
                                >
                                    Twitter
                                </a>
                            </li>
                            <li>
                                <a
                                    href="https://www.facebook.com/OurWorldinData"
                                    data-track-note="footer-navigation"
                                >
                                    Facebook
                                </a>
                            </li>
                            <li>
                                <a
                                    href="https://github.com/owid"
                                    data-track-note="footer-navigation"
                                >
                                    GitHub
                                </a>
                            </li>
                            <li>
                                <a
                                    href="/feed"
                                    data-track-note="footer-navigation"
                                >
                                    RSS Feed
                                </a>
                            </li>
                        </ul>
                    </div>
                    <div className="owid-col owid-col--lg-1">
                        <div className="logos">
                            <a
                                href="https://www.oxfordmartin.ox.ac.uk/research/programmes/global-development"
                                className="partner-logo"
                                data-track-note="footer-navigation"
                            >
                                <img
                                    src={`${props.baseUrl}/oms-logo.svg`}
                                    alt="Oxford Martin School logo"
                                    loading="lazy"
                                />
                            </a>
                            <a
                                href="/owid-at-ycombinator"
                                className="partner-logo"
                                data-track-note="footer-navigation"
                            >
                                <img
                                    src={`${props.baseUrl}/yc-logo.png`}
                                    alt="Y Combinator logo"
                                    loading="lazy"
                                />
                            </a>
                        </div>
                    </div>
                    <div className="owid-col flex-2">
                        <div className="legal">
                            <p>
                                License: All the material produced by Our World
                                in Data, including interactive visualizations
                                and code, are completely open access under the{" "}
                                <a
                                    href="https://creativecommons.org/licenses/by/4.0/"
                                    target="_blank"
                                    rel="noopener noreferrer"
                                >
                                    Creative Commons BY license
                                </a>
                                . You have the permission to use, distribute,
                                and reproduce these in any medium, provided the
                                source and authors are credited. All other
                                material, including data produced by third
                                parties and made available by Our World in Data,
                                is subject to the license terms from the
                                original third-party authors.
                            </p>
                            <p>
                                Please consult our full{" "}
                                <a href="/about#legal">legal disclaimer</a>.
                            </p>
                            <p>
                                <a
                                    href="https://global-change-data-lab.org/"
                                    className="partner-logo gcdl-logo"
                                    data-track-note="footer-navigation"
                                >
                                    <img
                                        src={`${props.baseUrl}/gcdl-logo.svg`}
                                        alt="Global Change Data Lab logo"
                                        loading="lazy"
                                    />
                                </a>
                                Our World In Data is a project of the{" "}
                                <a href="https://global-change-data-lab.org/">
                                    Global Change Data Lab
                                </a>
                                , a registered charity in England and Wales
                                (Charity Number 1186433).
                            </p>
                            {/* <a href="/" className="owid-logo">Our World in Data</a> */}
                        </div>
                    </div>
                </div>
            </div>
            <div className="site-tools" />
            <script src="https://polyfill.io/v3/polyfill.min.js?features=es6,fetch,URL,IntersectionObserver,IntersectionObserverEntry" />
            <script src={webpackUrl("commons.js", props.baseUrl)} />
            <script src={webpackUrl("vendors.js", props.baseUrl)} />
            <script src={webpackUrl("owid.js", props.baseUrl)} />
            <script
                dangerouslySetInnerHTML={{
                    __html: `window.runSiteFooterScripts()`, // todo: gotta be a better way.
                }}
            />
        </footer>
    </>
)