Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/idp integration #500

Merged
merged 3 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions components/Header/Menu/menu-items.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,6 @@ const PRODUCTS_ITEMS_1 = [
url: '/build-api-on-existing-db',
description: 'Head start development using existing DB',
},
{
title: 'Break the monolith',
image: IconBTM,
url: '/break-the-monolith',
description: 'Shift to microservices seamlessly',
},
{
title: 'Modernize applications',
image: IconModernize,
Expand Down
43 changes: 43 additions & 0 deletions components/Sections/Enterprise/IntegrateWithIdp/index.jsx
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;
13 changes: 10 additions & 3 deletions pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Soc2Banner from '../components/Common/SOC2';
import Facts from '../components/Sections/Enterprise/Facts';
import HeroBlock from '../components/Sections/Enterprise/HeroBlock';
import Slider from '../components/Sections/Enterprise/Slider';
import IntegrateWithIdp from '../components/Sections/Enterprise/IntegrateWithIdp';
import GetList from '../components/Sections/MainPage/GetList';
import { MainLayout } from '../layouts';
import CardsList from '../components/Common/CardsList';
Expand All @@ -14,6 +15,7 @@ import IconCollab from '../public/images/icons/icon-10.svg';




import TestimonialsSlider from '../components/Sections/Enterprise/Testimonials/testimonials-slider';
import Steps from '../components/Sections/MainPage/StepsPlatform';

Expand Down Expand Up @@ -70,9 +72,14 @@ const Home = () => {
<PageSection light className={'py-5'} innerClassName={"flex-grow"}>
<Slider />
</PageSection>
{/* <PageSection className={"py-10"} alternate>
<Facts />
</PageSection> */}

<PageSection alternate className={'py-5 pb-10'} innerClassName={"flex-grow"}>
<IntegrateWithIdp />
</PageSection>




<PageSection className={'py-5'} >
<Steps />
</PageSection>
Expand Down
Loading
Loading