mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
50 lines
1.1 KiB
TypeScript
50 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import {
|
|
Box,
|
|
Button,
|
|
Modal,
|
|
ModalOverlay,
|
|
ModalContent,
|
|
ModalHeader,
|
|
ModalFooter,
|
|
ModalBody,
|
|
ModalCloseButton,
|
|
useColorModeValue
|
|
} from '@chakra-ui/react';
|
|
import Image from 'next/image';
|
|
|
|
const WxConcat = ({ onClose }: { onClose: () => void }) => {
|
|
return (
|
|
<Modal isOpen={true} onClose={onClose}>
|
|
<ModalOverlay />
|
|
<ModalContent color={useColorModeValue('blackAlpha.700', 'white')}>
|
|
<ModalHeader>wx交流群</ModalHeader>
|
|
<ModalCloseButton />
|
|
<ModalBody textAlign={'center'}>
|
|
<Image
|
|
style={{ margin: 'auto' }}
|
|
src={'/imgs/wxerweima300.jpg'}
|
|
width={200}
|
|
height={200}
|
|
alt=""
|
|
/>
|
|
<Box mt={2}>
|
|
微信号:
|
|
<Box as={'span'} userSelect={'all'}>
|
|
YNyiqi
|
|
</Box>
|
|
</Box>
|
|
</ModalBody>
|
|
|
|
<ModalFooter>
|
|
<Button variant={'outline'} onClick={onClose}>
|
|
关闭
|
|
</Button>
|
|
</ModalFooter>
|
|
</ModalContent>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default WxConcat;
|