-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHomepageInstallation.js
More file actions
31 lines (30 loc) · 1.11 KB
/
HomepageInstallation.js
File metadata and controls
31 lines (30 loc) · 1.11 KB
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
import React from 'react';
import Link from '@docusaurus/Link';
import styles from './HomepageInstallation.module.css';
export default function HomepageInstallation() {
return (
<section className={`hero hero--primary ${styles.heroBanner}`}>
<div className="container">
<div className="row">
<div className="col col--6 col--offset-3">
<h1 className="hero__title" style={{color: "#f5f5fa"}}>Install Gitploy in Minutes</h1>
<p className="hero__subtitle">Download our official Docker image or build from source. No need to talk with sales or request a trial license.</p>
</div>
</div>
<div className={styles.buttons}>
<Link
className="button button--secondary button--lg margin-right--md"
to="/docs/tasks/installation">
Install Gitploy
</Link>
<Link
className="button button--primary button--lg"
style={{backgroundColor: "#3a416f"}}
to="https://cloud.gitploy.io">
Try Free Cloud
</Link>
</div>
</div>
</section>
);
}