8b5560eb02
* style: update gray brand colors (#11092) * Style: Update brand colors (#11224) * style: update brand colors * chore: upgrade react-components * style: update use cases page btn --> vault brand * chore: home page component api updates * style: fix link colors * run npm audit * upgrade downloads page * typo fixes * fix husky, run lint * roll back husky upgrade * style(home callouts): body copy gray -2 * style: testing hashi-stack-menu prerelease * style: upgrade components --> color contrast (#11328) * chore: upgrades components w/ new styles * refactor(use-cases pages): to use FeaturedSlider component * style(BeforeAfterDiagram): swap check icon * style(use-cases-cta): adjust background color --> vault primary * chore(community): pass to VerticalBlockTextList * chore(deps): adds tippy.js * chore(deps): upgrade product downloads pre-release * fix(subnav): use asPath to set active item * chore: upgrade deps to stable * style: home callouts body copy to black * chore: upgrade hashi-stack-menu to stable * chore: upgrade deps * style(use-cases): update background and button colors * chore: upgrade deps body copy color * chore: upgrades alert-banner * fix: remove package.json * content(home): removes hero background image * content(home): updates assets * content(use-cases): updates assets * style(before-after-diagram): adjust scaling styles * content:swap svgs for pngs * style: updates before/after diagram * chore: testing product download page pre-release * content: updates consul & nomad logomarks * chore: updates product download page to stable Co-authored-by: Jeff Escalante <jescalan@users.noreply.github.com>
45 lines
1.7 KiB
JavaScript
45 lines
1.7 KiB
JavaScript
import VerticalTextBlockList from '@hashicorp/react-vertical-text-block-list/index.tsx'
|
|
import SectionHeader from '@hashicorp/react-section-header'
|
|
import Head from 'next/head'
|
|
import HashiHead from '@hashicorp/react-head'
|
|
|
|
function CommunityPage() {
|
|
return (
|
|
<div id="community">
|
|
<HashiHead is={Head} title="Community | Vault by HashiCorp" />
|
|
<SectionHeader
|
|
headline="Community"
|
|
description="Vault is an open source project with a growing community. There are active, dedicated users willing to help you through various mediums."
|
|
use_h1={true}
|
|
/>
|
|
<VerticalTextBlockList
|
|
product="vault"
|
|
data={[
|
|
{
|
|
header: 'Discussion List',
|
|
body:
|
|
'<a href="https://discuss.hashicorp.com/c/vault">Vault Community Forum</a>',
|
|
},
|
|
{
|
|
header: 'Bug Tracker',
|
|
body:
|
|
'<a href="https://github.com/hashicorp/vault/issues">Issue tracker on GitHub</a> for reporting bugs. Use IRC or the mailing list for general help.',
|
|
},
|
|
{
|
|
header: 'Training',
|
|
body:
|
|
'<a href="https://www.hashicorp.com/training">Paid HashiCorp</a> training courses are available in a city near you. Private training courses are also available.',
|
|
},
|
|
{
|
|
header: 'Certification',
|
|
body:
|
|
'Learn more about our <a href="https://www.hashicorp.com/certification/">Cloud Engineer Certification program</a> and <a href="https://www.hashicorp.com/certification/vault-associate/">HashiCorp's Security Automation Certification</a> exams.',
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default CommunityPage
|