mirror of
https://github.com/zhigang1992/react.git
synced 2026-02-11 17:21:06 +08:00
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
import Layout from 'lib/components/layout'
|
|
import { Code, Link, Text, Spacer, Note } from 'components'
|
|
|
|
export const meta = {
|
|
title: 'introduction',
|
|
description: 'description',
|
|
index: 5,
|
|
}
|
|
|
|
|
|
## Introduction
|
|
|
|
### Why @zeit-ui/react
|
|
|
|
`@zeit-ui/react` is a React implementation for <Link rel="nofollow" target="_blank" pure href="https://github.com/zeit-ui/zeit-style">styles</Link>
|
|
originating from <Link rel="nofollow" target="_blank" pure href="https://zeit.co/design">ZEIT's Design</Link>.
|
|
|
|
The design of the **ZEIT** is concise and aesthetic feeling, this is an important reason for popular of ZEIT.
|
|
Now you can use them at will in React.
|
|
|
|
ZEIT UI is an unofficial organization, all our projects are open source.
|
|
|
|
<Spacer y={3} />
|
|
|
|
### Contact
|
|
|
|
- <Link pure color target="_blank" rel="nofollow" href="https://spectrum.chat/zeit-ui/general?tab=posts">Chat on Spectrum</Link>
|
|
- <Link pure color target="_blank" rel="nofollow" href="https://github.com/zeit-ui/react/issues/new">Report an issue</Link>
|
|
- Welcome share your feedback and ideas. We also love PRs.
|
|
|
|
<Spacer y={3} />
|
|
|
|
### License
|
|
|
|
Licensed under the [MIT LICENSE](https://github.com/zeit-ui/react/blob/master/LICENSE).
|
|
|
|
export default ({ children }) => <Layout meta={meta}>{children}</Layout>
|