github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/website/pages/community/index.jsx (about) 1 import VerticalTextBlockList from '@hashicorp/react-vertical-text-block-list' 2 import SectionHeader from '@hashicorp/react-section-header' 3 import Head from 'next/head' 4 5 export default function CommunityPage() { 6 return ( 7 <div id="p-community"> 8 <Head> 9 <title key="title">Community | Nomad by HashiCorp</title> 10 </Head> 11 <SectionHeader 12 headline="Community" 13 description="Nomad is an open-source project with a thriving community where active users are willing to help you via various mediums" 14 use_h1={true} 15 /> 16 <VerticalTextBlockList 17 data={[ 18 { 19 header: 'Community Forum', 20 body: 21 '<a href="https://discuss.hashicorp.com/c/nomad">Nomad Community Forum</a>', 22 }, 23 { 24 header: 'Office Hours', 25 body: 26 '<a href="https://www.hashicorp.com/community/office-hours">Ask a question</a> during community office hours', 27 }, 28 { 29 header: 'Announcement List', 30 body: 31 'High-priority, low-volume <a href="https://groups.google.com/g/hashicorp-announce">announcements about HashiCorp products</a>, including release information and security bulletins.', 32 }, 33 { 34 header: 'Bug Tracker', 35 body: 36 '<a href="https://github.com/hashicorp/nomad/issues">Issue tracker on GitHub</a>. Please only use this for reporting bugs. Do not ask for general help here; use the <a href="https://discuss.hashicorp.com/c/nomad">Community Forum</a> or the mailing list for that.', 37 }, 38 { 39 header: 'Webinars', 40 body: 41 '<a href="https://www.hashicorp.com/events?product=nomad&type=all">Register for webinars</a> or <a href="https://www.hashicorp.com/events/webinars/recorded?product=nomad&type=all">watch recorded webinars</a>.', 42 }, 43 ]} 44 /> 45 </div> 46 ) 47 }