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 }) => (
<MiddleSectionWrapper>
<GetStartedLinks heading="Get started" links={getStartedLinks} />
<GetStartedLinks heading="Get Started" links={getStartedLinks} />
<StepLinks heading="Useful Links" links={usefulLinks} />
</MiddleSectionWrapper>
);

View File

@@ -29,25 +29,25 @@ export const DocsHome: React.FC = () => {
const shortcutLinks = [
{
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',
url: WebsitePaths.DocsCoreConcepts,
},
{
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',
url: WebsitePaths.DocsApiExplorer,
},
{
heading: 'Guides',
description: 'Dive into intermediate and advanced 0x development topics',
description: 'Dive into beginner, intermediate and advanced 0x development topics',
icon: 'getStarted',
url: WebsitePaths.DocsGuides,
},
{
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',
url: WebsitePaths.DocsTools,
},