Skip to content

Commit

Permalink
update footer
Browse files Browse the repository at this point in the history
  • Loading branch information
yuval-hazaz committed Apr 24, 2024
1 parent 8949655 commit 7b12859
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions components/Footer/index.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import StartNow from '../../components/Sections/About/StartNow';
import StartNow from '../../components/Sections/Enterprise/StartNow';
import FooterBottomBar from './FooterBottomBar';
import PropTypes from 'prop-types';
import FooterLinks from './FooterLinks';
Expand All @@ -11,13 +11,24 @@ const Footer = ({ compactView, hideBanner }) => {
'w-full mt-0 relative overflow-hidden z-10 bg-dark-black-100 '
}
>
<div className="w-full max-w-container m-container p-container laptop:max-w-container-desktop laptop:m-container-desktop laptop:p-container-desktop bg-light-blue">
<div className=" ">
{!compactView && (
<>
{/*Banner*/}
{!hideBanner && (
<div className="amplication-base ">
<StartNow />
<div className=" bg-light-blue">
<StartNow
title="Build faster, with no limits"
description="Discover how Amplication Enterprise can help you build powerful, scalable, and secure applications tailored to your business needs."
linkPrimary={{
href: process.env.NEXT_PUBLIC_BOOK_MEETING_URL,
title: 'Book a Demo',
}}
linkSecondary={{
href: 'https://app.amplication.com/login',
title: 'Try Free',
}}
/>
</div>
)}
</>
Expand Down

0 comments on commit 7b12859

Please sign in to comment.