feat(ideContainer): 增加开发引导页
parent
5a06269e1d
commit
b04965f14f
Binary file not shown.
|
After Width: | Height: | Size: 565 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 565 KiB |
@ -0,0 +1,18 @@
|
||||
.appGuideContainer {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 20px;
|
||||
background-color: var(--color-fill-2);
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.guideImage {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
object-fit: contain;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
border-radius: 4px;
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import styles from './index.module.less';
|
||||
|
||||
const AppGuide: React.FC = () => {
|
||||
return (
|
||||
<div className={styles.appGuideContainer}>
|
||||
<img
|
||||
src="/images/process.png"
|
||||
alt="开发应用引导流程图"
|
||||
className={styles.guideImage}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default AppGuide;
|
||||
Loading…
Reference in New Issue