-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.jsx
51 lines (49 loc) · 1.48 KB
/
index.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import Lottie from 'lottie-react';
import { useCallback } from 'react';
import * as analytics from '../../../../lib/analytics';
import videoSrc from '../../../../public/animation/amplication-how-to.mp4';
import PageHero from '../../../Common/PageHero';
const HeroBlock = () => {
return (
<>
<PageHero
showTechStack={true}
title={
<div className="max-w-[480px] desktop:max-w-[680px]">
Automate and Standardize Backend Development
</div>
}
subTitle={null}
subText={
<>
Quickly build, maintain, and scale backend services that embed your
company’s best practices and standards. Avoid fragmented workflows
and ensure your development teams follow the Golden Paths.
</>
}
mainButton={{
text: 'Free Trial',
href: 'https://app.amplication.com',
eventName: 'startNowClicked',
eventParams: {
buttonLocation: 'hero',
},
}}
secondaryButton={{
text: 'Book a Demo',
href: process.env.NEXT_PUBLIC_BOOK_MEETING_URL,
eventName: 'bookDemoClicked',
eventParams: {
buttonLocation: 'hero',
},
}}
imageNode={
<video autoPlay loop muted style={{ width: '100%', height: 'auto' }}>
<source src={videoSrc} type="video/mp4" />
</video>
}
/>
</>
);
};
export default HeroBlock;