2020-04-06 16:27:35 -04:00
|
|
|
import Link from 'next/link'
|
|
|
|
|
|
|
|
export default function Footer({ openConsentManager }) {
|
|
|
|
return (
|
|
|
|
<footer className="g-footer">
|
2021-08-20 12:20:01 -04:00
|
|
|
<div className="g-grid-container">
|
2020-04-06 16:27:35 -04:00
|
|
|
<div className="left">
|
|
|
|
<Link href="/intro">
|
|
|
|
<a>Intro</a>
|
|
|
|
</Link>
|
2022-01-10 15:36:16 -08:00
|
|
|
<Link href="/docs/guides">
|
2020-04-06 16:27:35 -04:00
|
|
|
<a>Guides</a>
|
|
|
|
</Link>
|
|
|
|
<Link href="/docs">
|
|
|
|
<a>Docs</a>
|
|
|
|
</Link>
|
|
|
|
<Link href="/community">
|
|
|
|
<a>Community</a>
|
|
|
|
</Link>
|
|
|
|
<a href="https://hashicorp.com/privacy">Privacy</a>
|
|
|
|
<Link href="/security">
|
|
|
|
<a>Security</a>
|
|
|
|
</Link>
|
2022-01-31 13:21:19 -07:00
|
|
|
<Link href="https://www.hashicorp.com/brand">
|
2022-01-31 13:22:29 -07:00
|
|
|
<a>Brand</a>
|
2022-01-31 13:21:19 -07:00
|
|
|
</Link>
|
2020-04-06 16:27:35 -04:00
|
|
|
<a onClick={openConsentManager}>Consent Manager</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
)
|
|
|
|
}
|