feat: community backends page

This commit is contained in:
jialin
2026-01-30 20:48:55 +08:00
committed by Lawrence Li
parent 2dab5093dc
commit b6bd9cd7dd
22 changed files with 783 additions and 124 deletions
+2 -2
View File
@@ -2,14 +2,14 @@ import { Divider } from 'antd';
import React from 'react';
import '../style/separator.less';
const Separator: React.FC = () => {
const Separator: React.FC<{ showArrow?: boolean }> = ({ showArrow = true }) => {
return (
<div className="separator">
<Divider
orientation="vertical"
style={{ height: 'calc(100vh - 89px)', marginInline: '0px' }}
></Divider>
<span className="shape"></span>
{showArrow && <span className="shape"></span>}
</div>
);
};