Skip to content

Commit 145979b

Browse files
author
Petar Cvitanović
committed
schedule a demo
1 parent bba7e1f commit 145979b

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

docusaurus.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,10 @@ const config = {
121121
label: 'GitHub',
122122
href: 'https://github.com/cyclops-ui',
123123
},
124+
{
125+
label: 'Schedule a demo',
126+
href: 'https://docs.google.com/forms/d/e/1FAIpQLSfm9sSsmqJYsofteSrGigWMW9eOgSjoinHwjsvtjX6wOcAv9w/viewform',
127+
}
124128
],
125129
},
126130
{

src/css/custom.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,8 @@ html[data-theme='light'] footer {
2020
--ifm-color-primary: #FE8801;
2121
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
2222
}
23+
24+
.button.button--demo {
25+
background-color: #fe8801;
26+
color: #FFF;
27+
}

src/pages/index.js

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import nuqleus from '/static/img/nuqleus_logo.png';
1010

1111
import styles from './index.module.css';
1212
import Comparison from "../components/Comparison";
13+
import {Button} from "antd";
1314

1415
function HomepageHeader() {
1516
const {siteConfig} = useDocusaurusContext();
@@ -18,13 +19,20 @@ function HomepageHeader() {
1819
<header className={clsx('hero hero--primary', styles.heroBanner)}>
1920
<img src={helmsman} className={styles.image}/>
2021
<div className={styles.letters}>
21-
<h1 className="hero__title">{siteConfig.title}</h1>
22+
<h1 className="hero__title" style={{marginBottom: 0}}>{siteConfig.title}</h1>
2223
<p className="hero__subtitle">{siteConfig.tagline}</p>
23-
<div className={styles.buttons}>
24+
<div style={{paddingTop: '10px', color: '#fe8801'}} >
25+
<Link
26+
className="demo button button--secondary button--lg button--demo"
27+
to="https://docs.google.com/forms/d/e/1FAIpQLSfm9sSsmqJYsofteSrGigWMW9eOgSjoinHwjsvtjX6wOcAv9w/viewform">
28+
Schedule a demo
29+
</Link>
30+
</div>
31+
<div className={styles.buttons} style={{paddingTop: '10px', color: 'red!important'}}>
2432
<Link
2533
className="button button--secondary button--lg"
2634
to="/docs/about">
27-
Check it out
35+
Read the docs
2836
</Link>
2937
</div>
3038
<div className={styles.support}>

src/pages/index.module.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,10 @@
4040
.buttons {
4141
display: flex;
4242
align-items: center;
43-
justify-content: left;
4443
width: 100%;
44+
justify-content: left;
45+
padding-right: 0;
46+
margin-right: 0;
4547
}
4648

4749
.support {

0 commit comments

Comments
 (0)