Skip to content

Commit

Permalink
docs: ✏️ Change link text to Introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
dc7290 committed May 20, 2022
1 parent 6d81be8 commit cd7b635
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ import Link from '@docusaurus/Link'
import { ChevronRightIcon } from '@heroicons/react/outline'
import React from 'react'

const GettingStarted = () => {
const Introduction = () => {
return (
<div className="py-28 text-center">
<Link
to="/docs/intro"
className="inline-flex items-center rounded-md border border-transparent bg-indigo-600 px-6 py-3 text-base font-medium text-white shadow-sm hover:bg-indigo-700 hover:text-white hover:no-underline focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2"
>
Getting started
Introduction
<ChevronRightIcon className="ml-3 -mr-1 h-5 w-5" aria-hidden="true" />
</Link>
</div>
)
}


export default GettingStarted
export default Introduction
4 changes: 2 additions & 2 deletions docs/src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Layout from '@theme/Layout'
import React from 'react'

import Hero from '../components/Hero'
import GettingStarted from '../components/GettingStarted'
import Introduction from '../components/Introduction'
import Features from '../components/Features'

const Home = () => {
Expand All @@ -11,7 +11,7 @@ const Home = () => {
<main>
<Hero />
<Features />
<GettingStarted />
<Introduction />
</main>
</Layout>
)
Expand Down

1 comment on commit cd7b635

@vercel
Copy link

@vercel vercel bot commented on cd7b635 May 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.