|
1 | | -import type {ReactNode} from 'react'; |
2 | | -import React from 'react'; |
3 | | -import Layout from '@theme/Layout'; |
4 | | -import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; |
| 1 | +import type { ReactNode } from "react"; |
| 2 | +import React from "react"; |
| 3 | +import Layout from "@theme/Layout"; |
| 4 | +import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; |
5 | 5 |
|
6 | 6 | // Import all homepage components |
7 | | -import HomepageHero from '@site/src/components/HomepageHero'; |
8 | | -import WhatIsOpenChoreo from '@site/src/components/WhatIsOpenChoreo'; |
9 | | -import BenefitsCards from '@site/src/components/BenefitsCards'; |
10 | | -import GetStarted from '@site/src/components/GetStarted'; |
11 | | -import TechStack from '@site/src/components/TechStack'; |
12 | | -import Community from '@site/src/components/Community'; |
13 | | -import CNCF from '@site/src/components/CNCF'; |
| 7 | +import HomepageHero from "@site/src/components/HomepageHero"; |
| 8 | +import WhatIsOpenChoreo from "@site/src/components/WhatIsOpenChoreo"; |
| 9 | +import BenefitsCards from "@site/src/components/BenefitsCards"; |
| 10 | +import GetStarted from "@site/src/components/GetStarted"; |
| 11 | +import TechStack from "@site/src/components/TechStack"; |
| 12 | +import Community from "@site/src/components/Community"; |
| 13 | +import CNCF from "@site/src/components/CNCF"; |
| 14 | +import Ecosystem from "@site/src/components/Ecosystem"; |
14 | 15 |
|
15 | | -import styles from './index.module.css'; |
| 16 | +import styles from "./index.module.css"; |
16 | 17 |
|
17 | 18 | /** |
18 | 19 | * Main Homepage Component |
19 | 20 | * This is the entry point for the homepage |
20 | 21 | */ |
21 | 22 | export default function Home(): ReactNode { |
22 | | - const {siteConfig} = useDocusaurusContext(); |
| 23 | + const { siteConfig } = useDocusaurusContext(); |
23 | 24 |
|
24 | 25 | return ( |
25 | | - <Layout |
26 | | - title={siteConfig.tagline} |
| 26 | + <Layout |
| 27 | + title={siteConfig.tagline} |
27 | 28 | description="A complete, open-source developer platform for Kubernetes, ready to use from day one, built to integrate with your stack." |
28 | 29 | > |
29 | | - |
30 | 30 | <div className={styles.homepage}> |
31 | | - <HomepageHero/> |
32 | | - <WhatIsOpenChoreo/> |
33 | | - <BenefitsCards/> |
34 | | - <GetStarted/> |
35 | | - <TechStack/> |
36 | | - <Community/> |
37 | | - <CNCF/> |
| 31 | + <HomepageHero /> |
| 32 | + <WhatIsOpenChoreo /> |
| 33 | + <BenefitsCards /> |
| 34 | + <GetStarted /> |
| 35 | + <TechStack /> |
| 36 | + <Ecosystem /> |
| 37 | + <Community /> |
| 38 | + <CNCF /> |
38 | 39 | </div> |
39 | 40 | </Layout> |
40 | 41 | ); |
|
0 commit comments