Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions apps/web/src/modules/about/05Charter.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import React from 'react';
import LinkLegacy from '@common/components/LinkLegacy';
import { Paragraph, DocTitle } from './components';

const Charter = () => {
return (
<div className="mb-24">
<DocTitle>Charter / 章程</DocTitle>
<Paragraph>
The OSS Compass community charter is available
<LinkLegacy href="https://github.com/oss-compass/community-zh/tree/main/governance">
here
</LinkLegacy>
. / OSS Compass 社区章程请
<LinkLegacy href="https://github.com/oss-compass/community-zh/tree/main/governance">
点击查看
</LinkLegacy>
</Paragraph>
</div>
);
};

export default Charter;
2 changes: 2 additions & 0 deletions apps/web/src/modules/about/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import Banner from './Banner';
import Introduce from './Introduce';
import Charter from './05Charter';
import Board from './10Board';
import Members from './20Members';
import TechnicalCommittee from './30TechnicalCommittee';
Expand All @@ -17,6 +18,7 @@ const About = () => {
<div className="py-20">
<div className="mx-auto w-[1000px] md:w-full md:px-4">
<Introduce />
<Charter />
<Board />
<Members />
<TechnicalCommittee />
Expand Down