Browse Source

feat: Link Ant Design Blazor (#23579)

* Link Ant Design Blazor

* Indent and align

Co-authored-by: Benjamin Vertonghen <benjamin.vertonghen@apped.be>
pull/23602/head
Benjamin Vertonghen 5 years ago
committed by GitHub
parent
commit
175e0aaa14
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      docs/spec/introduce.en-US.md
  2. 3
      docs/spec/introduce.zh-CN.md
  3. 6
      site/theme/template/Home/DesignPage/index.tsx
  4. 5
      site/theme/template/Layout/Footer.tsx
  5. 10
      site/theme/template/Layout/Header/More.tsx

5
docs/spec/introduce.en-US.md

@ -83,6 +83,11 @@ const LinksList = () => (
antue (vue)<LinkIcon />
</a>
</li>
<li>
<a href="https://append-it.github.io/ant-design-blazor/" target="_blank">
Ant Design of Blazor<LinkIcon />
</a>
</li>
</ul>
);

3
docs/spec/introduce.zh-CN.md

@ -83,6 +83,9 @@ const LinksList = () => (
antue (vue)<LinkIcon />
</a>
</li>
<li>
<a href="https://append-it.github.io/ant-design-blazor/" target="_blank">Ant Design of Blazor<LinkIcon /></a>
</li>
</ul>
);

6
site/theme/template/Home/DesignPage/index.tsx

@ -251,6 +251,12 @@ export default function DesignPage() {
<RightOutlined className="home-link-arrow" />
</a>
</li>
<li>
<a href="https://append-it.github.io/ant-design-blazor/" target="_blank" rel="noopener noreferrer">
Ant Design of Blazor
<RightOutlined className="home-link-arrow" />
</a>
</li>
</ul>
</Col>
<Col xs={24} sm={15} style={{ alignSelf: 'flex-end', textAlign: 'right' }}>

5
site/theme/template/Layout/Footer.tsx

@ -79,6 +79,11 @@ class Footer extends React.Component<WrappedComponentProps> {
url: 'https://vue.ant.design',
openExternal: true,
},
{
title: 'Ant Design Blazor',
url: 'https://append-it.github.io/ant-design-blazor/',
openExternal: true,
},
{
title: 'Ant Design Landing',
description: <FormattedMessage id="app.footer.landing" />,

10
site/theme/template/Layout/Header/More.tsx

@ -37,6 +37,16 @@ export function getEcosystemGroup({ isZhCN }: SharedProps): React.ReactElement {
Ant Design of Vue
</a>
</Menu.Item>
<Menu.Item key="blazor">
<a
href="https://append-it.github.io/ant-design-blazor/"
className="header-link"
target="_blank"
rel="noopener noreferrer"
>
Ant Design of Blazor
</a>
</Menu.Item>
{isZhCN ? (
<Menu.Item key="course" className="hide-in-home-page">
<a

Loading…
Cancel
Save