-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #188 from apecloud/feat/home
feat: add btn
- Loading branch information
Showing
2 changed files
with
43 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,8 +138,8 @@ export default function Home(): JSX.Element { | |
</Link> | ||
<a | ||
className={styles.actionItem} | ||
href="mailto:[email protected]" target="_blank" rel="noreferrer noopener" > | ||
<span className={styles.btnText}>Book a demo</span> | ||
href="https://console.kubeblocks.io/" target="" rel="noreferrer noopener" > | ||
<span className={styles.btnText}>KubeBlocks Cloud</span> | ||
</a> | ||
</div> | ||
</div> | ||
|
@@ -152,16 +152,16 @@ export default function Home(): JSX.Element { | |
<div className={styles.description}> | ||
<div className={styles.content}> | ||
<h1>Why you need KubeBlocks</h1> | ||
{isMedium? <div className={styles.context}> | ||
{isMedium ? <div className={styles.context}> | ||
<p>Building data infrastructure on K8s becomes increasingly popular. However, the most prominent obstacles are</p> | ||
<p>the difficulties of integrating with cloud providers, the lack of reliable operators, and the steep learning</p> | ||
<p>curve of K8s. KubeBlocks offers an open-source option that helps application developers and platform</p> | ||
<p>engineers set up feature-rich services for RDBMS, NoSQL, streaming and analytical systems.</p> | ||
<p>No need to be a K8s professional, anyone can set up a full-stack, </p> | ||
<p>production-ready data infrastructure in minutes.</p> | ||
</div> : <div className={styles.context}> | ||
<p>Building data infrastructure on K8s becomes increasingly popular. However, the most prominent obstacles are the difficulties of integrating with cloud providers, the lack of reliable operators, and the steep learning curve of K8s. | ||
KubeBlocks offers an open-source option that helps application developers and platform engineers set up feature-rich services for RDBMS, NoSQL, streaming and analytical systems. </p> | ||
<p>Building data infrastructure on K8s becomes increasingly popular. However, the most prominent obstacles are the difficulties of integrating with cloud providers, the lack of reliable operators, and the steep learning curve of K8s. | ||
KubeBlocks offers an open-source option that helps application developers and platform engineers set up feature-rich services for RDBMS, NoSQL, streaming and analytical systems. </p> | ||
<p>No need to be a K8s professional, anyone can set up a full-stack, production-ready data infrastructure in minutes.</p> | ||
</div>} | ||
<div className={styles.text}>Created by <span>ApeCloud</span></div> | ||
|
@@ -197,6 +197,12 @@ export default function Home(): JSX.Element { | |
) | ||
})} | ||
</ul> | ||
<a | ||
className={styles.actionItem} | ||
href="mailto:[email protected]" target="_blank" rel="noreferrer noopener" > | ||
<span className={styles.btnText}>Book a demo</span> | ||
</a> | ||
|
||
</div> | ||
</div> | ||
</Layout> | ||
|