-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update meetings URL * feat:add idp integration section
- Loading branch information
1 parent
e7a6e63
commit 87eda1f
Showing
5 changed files
with
77 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import Image from 'next/image'; | ||
import PropTypes from 'prop-types'; | ||
import WidePanelWithImage from '../../../Common/WidePanelWithImage'; | ||
|
||
import ImgBackstage from '../../../../public/images/idp/backstage.svg'; | ||
import ImgPort from '../../../../public/images/idp/port.svg'; | ||
|
||
const TITLE = 'Seamlessly Integrate with Your Portal'; | ||
const CONTENT = `Amplication can integrate with your internal developer portal, including | ||
leading platforms like Backstage, Port | ||
, and many others. Ensure smooth collaboration and a unified developer | ||
experience by connecting Amplication to your developer's portal.`; | ||
|
||
const IntegrateWithIdp = ({ classes }) => { | ||
return ( | ||
<> | ||
<WidePanelWithImage | ||
title={TITLE} | ||
content={CONTENT} | ||
fullWidth={true} | ||
alternate={false} | ||
/> | ||
<div className="flex flex-wrap items-center justify-center gap-12"> | ||
<div className="flex justify-center h-[50px] "> | ||
<Image src={ImgBackstage} alt="Backstage" /> | ||
</div> | ||
<div className="flex justify-center h-[50px] "> | ||
<Image src={ImgPort} alt="Port" /> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
IntegrateWithIdp.propTypes = { | ||
classes: PropTypes.string, | ||
}; | ||
|
||
IntegrateWithIdp.defaultProps = { | ||
classes: '', | ||
}; | ||
|
||
export default IntegrateWithIdp; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.