UNPKG

bigbluebutton-strapi

Version:

Integrate online classes into Strapi CMS via BigBlueButton open-source video conferencing. This free plugin also provides API end-points to easily setup start and join buttons for web conferencing into any frontend app.

40 lines (37 loc) 1.1 kB
import React from 'react'; import { Grid, GridItem } from '@strapi/design-system/Grid'; import { Box } from '@strapi/design-system/Box'; import { Link } from '@strapi/design-system/Link'; import { Typography } from '@strapi/design-system/Typography'; import ArrowRight from '@strapi/icons/ArrowRight'; const SettingLink = () => { return ( <div> <Box shadow="tableShadow" background="neutral0" paddingTop={6} paddingLeft={7} paddingRight={7} paddingBottom={6} hasRadius > <Box> <Grid gap={4}> <GridItem col={6} s={12}> <Link to="/settings/bigbluebutton-strapi" endIcon={<ArrowRight />}> Configure Your BigBlueButton URL and Secret </Link> </GridItem> <GridItem col={6} s={12}> <Typography variant="pi"> Need help? Contact us at : support@higheredlab.com </Typography> </GridItem> </Grid> </Box> </Box> </div> ); }; export default SettingLink;