feat: Add base project structure with API and web components

This commit is contained in:
Ke Sun
2025-12-02 20:28:01 +08:00
parent f3de6d6cc9
commit c1adc62ec6
817 changed files with 111226 additions and 106 deletions

View File

@@ -0,0 +1,17 @@
import { type FC } from 'react';
import clsx from 'clsx';
import styles from './layout.module.css';
const LayoutBg: FC = () => {
return (
<div className="rb:fixed rb:top-0 rb:right-0 rb:left-0 rb:bottom-0 rb:bg-[#FBFDFF]">
<div className={clsx('rb:h-[240px]', styles.bgTop)}>
<div className={clsx(styles.left1)}></div>
<div className={clsx(styles.left2)}></div>
<div className={clsx(styles.right1)}></div>
</div>
</div>
)
};
export default LayoutBg;