You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

101 lines
3.6 KiB

import React from 'react';
import { Typography } from 'antd';
const { Title, Paragraph, Text } = Typography;
const App: React.FC = () => (
<>
<Title>Introduction</Title>
<Paragraph>
In the process of internal desktop applications development, many different design specs and
implementations would be involved, which might cause designers and developers difficulties and
duplication and reduce the efficiency of development.
</Paragraph>
<Paragraph>
After massive project practice and summaries, Ant Design, a design language for background
applications, is refined by Ant UED Team, which aims to
<Text strong>
uniform the user interface specs for internal background projects, lower the unnecessary
cost of design differences and implementation and liberate the resources of design and
front-end development
</Text>
.
</Paragraph>
<Title level={2}>Guidelines and Resources</Title>
<Paragraph>
We supply a series of design principles, practical patterns and high quality design resources
(<Text code>Sketch</Text> and <Text code>Axure</Text>), to help people create their product
prototypes beautifully and efficiently.
</Paragraph>
<Paragraph>
<ul>
<li>
<a href="/docs/spec/proximity">Principles</a>
</li>
<li>
<a href="/docs/pattern/navigation">Patterns</a>
</li>
<li>
<a href="/docs/resource/download">Resource Download</a>
</li>
</ul>
</Paragraph>
<Title id="intro"></Title>
<Paragraph>
</Paragraph>
<Paragraph>
Ant Design<Text mark></Text>
<Text strong></Text>
</Paragraph>
<Title level={2}></Title>
<Paragraph>
<Text code>Sketch</Text>
<Text code>Axure</Text>
</Paragraph>
<Paragraph>
<ul>
<li>
<a href="/docs/spec/proximity"></a>
</li>
<li>
<a href="/docs/pattern/navigation"></a>
</li>
<li>
<a href="/docs/resource/download"></a>
</li>
</ul>
</Paragraph>
<Paragraph>
<ul>
<li>I am an unordered item</li>
<li>
I am an unordered item with an ordered sublist
<ol>
<li>I am ordered</li>
</ol>
<ul>
<li>I am unordered</li>
</ul>
</li>
</ul>
<ol>
<li>
Ordered list item with unordered sublist
<ul>
<li>I am unordered!</li>
<li>I am also unordered!</li>
</ul>
</li>
</ol>
</Paragraph>
</>
);
export default App;