e33ed2356e
* style: update gray brand colors * style: update brand colors * chore: upgrades base platform deps * style: updates learn callouts label color * style: icons to flat consul primary color * style: errand link styles * refactor(home): use react-learn-callout * chore; adds ts config, upgrades components * chore: upgrade deps chore: upgrade to latest component styles chore: upgrades nextjs-scripts * chore: fix-router * update deps, add new downloads page * chore: upgrade to stable deps chore: use npm 7 * style: home callouts body copy to gray-2 * chore: upgrade hashi-stack-menu * style: home feature icons update * chore: upgrade deps body copy colors * chore: upgrades alert banner * feat: updates favicon * style(downloads): adds pre-release and release candidate styles * fix(home): adds right padding to quote * content(home): swap assets * content(uses-cases): updates assets * chore: removes use cases icon override * content(use-cases): swap out svgs for pngs * content: copies asset * trying again with this asset * try putting asset in public * content(use-cases): updates mercedes case study aseset * chore: upgrades product download page prerelease * chore: updates product download page to stable * chore: updates favicon path Co-authored-by: Jeff Escalante <jescalan@users.noreply.github.com>
50 lines
2 KiB
JavaScript
50 lines
2 KiB
JavaScript
import VerticalTextBlockList from '@hashicorp/react-vertical-text-block-list'
|
|
import SectionHeader from '@hashicorp/react-section-header'
|
|
import Head from 'next/head'
|
|
import { productSlug } from 'data/metadata'
|
|
|
|
export default function CommunityPage() {
|
|
return (
|
|
<div id="p-community">
|
|
<Head>
|
|
<title key="title">Community | Consul by HashiCorp</title>
|
|
</Head>
|
|
<SectionHeader
|
|
headline="Community"
|
|
description="Consul is a large project with a growing community. There are active, dedicated users willing to help you through various mediums."
|
|
use_h1={true}
|
|
/>
|
|
<VerticalTextBlockList
|
|
product={productSlug}
|
|
data={[
|
|
{
|
|
header: 'Community Forum',
|
|
body:
|
|
'<a href="https://discuss.hashicorp.com/c/consul">Consul Community Forum</a>',
|
|
},
|
|
{
|
|
header: 'Bug Tracker',
|
|
body:
|
|
'<a href="https://github.com/hashicorp/consul/issues">Issue tracker on GitHub</a>. Please only use this for reporting bugs. Do not ask for general help here; use Gitter or the mailing list for that.',
|
|
},
|
|
{
|
|
header: 'Community Tools',
|
|
body:
|
|
'<a href="/docs/download-tools">Download Community Tools</a>. Please check out some of the awesome Consul tooling our amazing community has helped build.',
|
|
},
|
|
{
|
|
header: 'Training',
|
|
body:
|
|
'Paid <a href="https://www.hashicorp.com/training">HashiCorp training courses</a> are also 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/consul-associate/">HashiCorp's Networking Automation Certification </a> exams.',
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|