|
| 1 | +// @flow |
| 2 | +import React from 'react'; |
| 3 | +import Link from 'src/components/link'; |
| 4 | +import Section from 'src/components/themedSection'; |
| 5 | +import Feature from '../../pricing/components/feature'; |
| 6 | +import { |
| 7 | + TwoUp, |
| 8 | + Left, |
| 9 | + Right, |
| 10 | + Heading, |
| 11 | + Copy, |
| 12 | + CTA, |
| 13 | + TextCTA, |
| 14 | + PlanSection, |
| 15 | + PlanPrice, |
| 16 | + PlanDescription, |
| 17 | + PlanFeatures, |
| 18 | + Actions, |
| 19 | +} from '../../pricing/style'; |
| 20 | +import { track, events } from 'src/helpers/analytics'; |
| 21 | + |
| 22 | +type Props = { |
| 23 | + goopColor?: string, |
| 24 | +}; |
| 25 | + |
| 26 | +const Intro = (props: Props) => { |
| 27 | + const { goopColor = 'bg.reverse' } = props; |
| 28 | + return ( |
| 29 | + <Section goop={4} color={goopColor}> |
| 30 | + <TwoUp> |
| 31 | + <Left> |
| 32 | + <Heading>Introducing Concierge</Heading> |
| 33 | + <Copy> |
| 34 | + As a team, we’ve spent years building online communities and we’ve |
| 35 | + seen how valuable they can be to businesses when managed well. But |
| 36 | + that’s a full-time job, and a lot of businesses don’t have the |
| 37 | + access or the budget to hire experienced, full-time community |
| 38 | + managers. |
| 39 | + </Copy> |
| 40 | + <Copy> |
| 41 | + There are a lot of hard problems to solve when you’re starting a |
| 42 | + community from scratch, but now you don’t have to face these |
| 43 | + problems alone. |
| 44 | + </Copy> |
| 45 | + <Actions> |
| 46 | + <a |
| 47 | + onClick={() => track(events.CONCIERGE_PAGE_CONTACT_US_CLICKED)} |
| 48 | + |
| 49 | + > |
| 50 | + <CTA |
| 51 | + style={{ |
| 52 | + padding: '16px 24px', |
| 53 | + fontSize: '18px', |
| 54 | + marginTop: '0', |
| 55 | + }} |
| 56 | + large |
| 57 | + > |
| 58 | + Contact our team |
| 59 | + </CTA> |
| 60 | + </a> |
| 61 | + |
| 62 | + <Link |
| 63 | + onClick={() => track(events.CONCIERGE_PAGE_LEARN_MORE_CLICKED)} |
| 64 | + to={`/thread/c5a6ea22-eb8f-4247-bed4-c322f6177c94`} |
| 65 | + > |
| 66 | + <TextCTA>Learn more</TextCTA> |
| 67 | + </Link> |
| 68 | + </Actions> |
| 69 | + </Left> |
| 70 | + <Right> |
| 71 | + <PlanSection> |
| 72 | + <PlanPrice>Let Spectrum handle the hard parts.</PlanPrice> |
| 73 | + <PlanDescription> |
| 74 | + Concierge makes the most painful elements of community management |
| 75 | + easy: |
| 76 | + </PlanDescription> |
| 77 | + <PlanFeatures> |
| 78 | + <Feature title={'Formulating a community strategy'} /> |
| 79 | + <Feature title={'Launching or migrating your community'} /> |
| 80 | + <Feature title={'Developing a content pipeline'} /> |
| 81 | + <Feature title={`Understanding your community's impact`} /> |
| 82 | + <Feature title={'Managing time efficiently'} /> |
| 83 | + </PlanFeatures> |
| 84 | + </PlanSection> |
| 85 | + </Right> |
| 86 | + </TwoUp> |
| 87 | + </Section> |
| 88 | + ); |
| 89 | +}; |
| 90 | + |
| 91 | +export default Intro; |
0 commit comments