Cleaned up some copy on docs home

This commit is contained in:
Chris Kalani
2019-08-19 13:40:55 -07:00
committed by fabioberger
parent 32adb35c2a
commit 7da71c0955
3 changed files with 6 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ interface IMiddleSectionProps {
export const MiddleSection: React.FC<IMiddleSectionProps> = ({ getStartedLinks, usefulLinks }) => ( export const MiddleSection: React.FC<IMiddleSectionProps> = ({ getStartedLinks, usefulLinks }) => (
<MiddleSectionWrapper> <MiddleSectionWrapper>
<GetStartedLinks heading="Get started" links={getStartedLinks} /> <GetStartedLinks heading="Get Started" links={getStartedLinks} />
<StepLinks heading="Useful Links" links={usefulLinks} /> <StepLinks heading="Useful Links" links={usefulLinks} />
</MiddleSectionWrapper> </MiddleSectionWrapper>
); );

View File

@@ -29,25 +29,25 @@ export const DocsHome: React.FC = () => {
const shortcutLinks = [ const shortcutLinks = [
{ {
heading: 'Core Concepts', heading: 'Core Concepts',
description: 'Understand the fundamentals of 0x development', description: "Learn all the core concepts you'll need to build effectively on 0x",
icon: 'coreConcepts', icon: 'coreConcepts',
url: WebsitePaths.DocsCoreConcepts, url: WebsitePaths.DocsCoreConcepts,
}, },
{ {
heading: 'API Explorer', heading: 'API Explorer',
description: 'Browse and filter through all the open-source 0x developer tools', description: 'Explore the core 0x library and learn how to use it',
icon: 'apiExplorer', icon: 'apiExplorer',
url: WebsitePaths.DocsApiExplorer, url: WebsitePaths.DocsApiExplorer,
}, },
{ {
heading: 'Guides', heading: 'Guides',
description: 'Dive into intermediate and advanced 0x development topics', description: 'Dive into beginner, intermediate and advanced 0x development topics',
icon: 'getStarted', icon: 'getStarted',
url: WebsitePaths.DocsGuides, url: WebsitePaths.DocsGuides,
}, },
{ {
heading: 'Tools', heading: 'Tools',
description: 'Explore the core 0x library and how to use it', description: 'Browse and filter through all the open-source 0x developer tools',
icon: 'tools', icon: 'tools',
url: WebsitePaths.DocsTools, url: WebsitePaths.DocsTools,
}, },

View File

@@ -459,4 +459,4 @@
"externalUrl": "https://github.com/0xProject/0x-coordinator-server" "externalUrl": "https://github.com/0xProject/0x-coordinator-server"
} }
} }
} }