forked from KusionStack/kusionstack.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refresh homepage: header, features, who-using * remove unused files * minor fix: fix quick start link * remove unused class * remove unused class * minor class fix
- Loading branch information
Showing
15 changed files
with
419 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,5 @@ npm-debug.log* | |
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
.vscode/ | ||
.vscode/ | ||
.idea/ |
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
const whoisUsing = [ | ||
{ | ||
name: 'Ant Group', | ||
img: 'img/logos/antgroup.jpeg', | ||
href: 'https://www.antgroup.com/' | ||
}, | ||
{ | ||
name: 'YouZan', | ||
img: 'img/logos/youzan.png', | ||
href: 'https://www.youzan.com/', | ||
}, | ||
{ | ||
name: 'Kyligence', | ||
img: 'img/logos/kyligence.png', | ||
href: 'https://www.kyligence.io/', | ||
}, | ||
] | ||
|
||
export default whoisUsing |
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 |
---|---|---|
@@ -1,47 +1,215 @@ | ||
import React from 'react'; | ||
import clsx from 'clsx'; | ||
import Layout from '@theme/Layout'; | ||
import Link from '@docusaurus/Link'; | ||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; | ||
import styles from './index.module.css'; | ||
import HomepageFeatures from '../components/HomepageFeatures'; | ||
import Translate, {translate} from '@docusaurus/Translate'; | ||
|
||
function HomepageHeader() { | ||
const {siteConfig} = useDocusaurusContext(); | ||
const siteConfig_title = translate({id: 'homepage.title', "message": "KusionStack"}); | ||
const siteConfig_tagline = translate({id: 'homepage.tagline', "message": "Programmable Configuration technology Stack"}); | ||
import Link from '@docusaurus/Link' | ||
import Translate from '@docusaurus/Translate' | ||
import useBaseUrl from '@docusaurus/useBaseUrl' | ||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext' | ||
import Layout from '@theme/Layout' | ||
import clsx from 'clsx' | ||
import React from 'react' | ||
|
||
import whoIsUsing from '../data/whoIsUsing' | ||
import styles from './index.module.css' | ||
|
||
|
||
function Feature({ imgUrl, title, description, reverse }) { | ||
return ( | ||
<header className={clsx('hero hero--primary', styles.heroBanner)}> | ||
<div className="container"> | ||
<h1 className="hero__title">{siteConfig_title}</h1> | ||
<p className="hero__subtitle">{siteConfig_tagline}</p> | ||
<div className={styles.buttons}> | ||
<Link | ||
className="button button--secondary button--lg" | ||
to="/docs/user_docs/getting-started/usecase"> | ||
<Translate>Quick Start - 15min ⏱️</Translate> | ||
</Link> | ||
<div className={clsx('row', styles.feature, reverse && styles.featureReverse)}> | ||
<div className="col col--6 text--center"> | ||
<img className={styles.featureImage} src={useBaseUrl(imgUrl)} alt={title} /> | ||
</div> | ||
<div className={clsx('col col--6', styles.featureContent)}> | ||
<div> | ||
<h3>{title}</h3> | ||
<div>{description}</div> | ||
</div> | ||
</div> | ||
</header> | ||
); | ||
</div> | ||
) | ||
} | ||
|
||
export default function Home() { | ||
const {siteConfig} = useDocusaurusContext(); | ||
const siteConfig_title = translate({id: 'homepage.title', "message": "KusionStack"}); | ||
const description = translate({"message":"Description will go into a meta tag in <head />"}); | ||
function Home() { | ||
const { siteConfig } = useDocusaurusContext() | ||
|
||
return ( | ||
<Layout | ||
title={`${siteConfig_title}`} | ||
description={description}> | ||
<HomepageHeader /> | ||
<Layout title={ siteConfig.tagline} description={siteConfig.tagline}> | ||
<main> | ||
<HomepageFeatures /> | ||
<div className={clsx('hero shadow--lw', styles.heroBanner)}> | ||
<div className="container text--center"> | ||
<div className={styles.center}> | ||
<h1 className="hero__title">{siteConfig.title}</h1> | ||
<p className="hero__subtitle"> | ||
<Translate id="siteConfig.tagline">{siteConfig.tagline}</Translate> | ||
</p> | ||
</div> | ||
<div className={styles.indexCtas}> | ||
<div> | ||
<Link className={clsx("button button--lg button--secondary", styles.button)} to="/docs/user_docs/getting-started/usecase"> | ||
<Translate description="homepage getting started button"> | ||
Getting started | ||
</Translate> | ||
</Link> | ||
</div> | ||
<div> | ||
<Link className={clsx("button button--primary button--lg", styles.button)} to="/docs/user_docs/getting-started/install/kusionup"> | ||
<Translate description="homepage getting started button"> | ||
Install | ||
</Translate> | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div className="hero-divider" /> | ||
|
||
<div className="hero"> | ||
<div className="container text--center"> | ||
<h2 className="hero__subtitle"> | ||
<Translate id="home.quickstart">All about your modern app by Platform as Code</Translate> | ||
</h2> | ||
<p className={styles.header}> | ||
<Translate id="siteConfig.tagline">KusionStack codifies and unifies platform resources into stacked models and polices.</Translate> | ||
</p> | ||
</div> | ||
</div> | ||
|
||
<div className="hero-divider" /> | ||
|
||
<div className="hero"> | ||
<div className="container"> | ||
<Feature | ||
imgUrl="img/features/easy.jpeg" | ||
title={<Translate id="home.easyshipping">Easy App Shipping</Translate>} | ||
description={ | ||
<> | ||
<p> | ||
<Translate | ||
id="home.easyshipping.1"> | ||
Fast develop, easy deliver | ||
</Translate> | ||
</p> | ||
<ul> | ||
<li> | ||
<Translate id="home.easyshipping.2"> | ||
Codify and unifies spec, resources and manifests about modern app | ||
</Translate> | ||
</li> | ||
<li> | ||
<Translate id="home.easyshipping.3"> | ||
Orchestrate and provision on Kubernetes and Clouds in a managed manner | ||
</Translate> | ||
</li> | ||
<li> | ||
<Translate id="home.easyshipping.4"> | ||
Easy-to-access, Kubernetes-first, lightweight and dev-friendly | ||
</Translate> | ||
</li> | ||
</ul> | ||
</> | ||
} | ||
/> | ||
<Feature | ||
imgUrl="img/features/teams.png" | ||
title={<Translate id="home.enterpriseops">Enterprise Declarative DevOps</Translate>} | ||
description={ | ||
<> | ||
<p> | ||
<Translate | ||
id="home.enterpriseops.1"> | ||
From the first code to production | ||
</Translate> | ||
</p> | ||
<ul> | ||
<li> | ||
<Translate id="home.enterpriseops.2"> | ||
Multi teams, projects go across multi phases to multi runtimes, clouds | ||
</Translate> | ||
</li> | ||
<li> | ||
<Translate id="home.enterpriseops.3"> | ||
Production ready with scalability, performance and left-shifted stability | ||
</Translate> | ||
</li> | ||
<li> | ||
<Translate id="home.enterpriseops.4"> | ||
Various usages to meet requirements of diverse enterprise scenarios | ||
</Translate> | ||
</li> | ||
</ul> | ||
</> | ||
} | ||
reverse={true} | ||
/> | ||
<Feature | ||
imgUrl="img/features/enable.jpeg" | ||
title={<Translate id="home.platformengineering">Enable Platform Engineering</Translate>} | ||
description={ | ||
<> | ||
<p> | ||
<Translate | ||
id="home.platformengineering.1"> | ||
Build proper abstraction and golden path | ||
</Translate> | ||
</p> | ||
<ul> | ||
<li> | ||
<Translate id="home.platformengineering.2"> | ||
Schema-centric abstraction and constraints to build your models and validations | ||
</Translate> | ||
</li> | ||
<li> | ||
<Translate id="home.platformengineering.3"> | ||
Easy to integrate in CI pipeline, service and product to build your paved road | ||
</Translate> | ||
</li> | ||
<li> | ||
<Translate id="home.platformengineering.4"> | ||
Fast develop on raw platform capabilities with consistency to cope with change | ||
</Translate> | ||
</li> | ||
</ul> | ||
</> | ||
} | ||
/> | ||
</div> | ||
</div> | ||
|
||
<div className="hero-divider" /> | ||
|
||
<div className="hero"> | ||
<div className="container text--center"> | ||
<h2 className="hero__subtitle"> | ||
<Translate id="home.whoisusing">Who is Using KusionStack</Translate> | ||
</h2> | ||
<div className={styles.whiteboard}> | ||
<div className="row"> | ||
{whoIsUsing.map((w) => ( | ||
<div key={w.name} className={clsx('col col--4', styles.whiteboardCol)}> | ||
<a className={styles.logoWrapper} href={w.href} target="_blank"> | ||
<img style={w.style} src={useBaseUrl(w.img)} alt={w.name} /> | ||
</a> | ||
</div> | ||
))} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div className="hero-divider" /> | ||
|
||
<div className="hero"> | ||
<div className="container text--center"> | ||
<h2 className="hero__subtitle"> | ||
KusionStack is in <Link to="https://cncf.io/">Cloud Native Computing Foundation</Link> landscape | ||
</h2> | ||
<br/> | ||
<div> | ||
<img src="img/cncf-logo.png" /> | ||
</div> | ||
</div> | ||
</div> | ||
</main> | ||
</Layout> | ||
); | ||
) | ||
} | ||
|
||
export default Home |
Oops, something went wrong.