Skip to content

Commit d2e315b

Browse files
author
Kavishka Fernando
committed
add module
Signed-off-by: Kavishka Fernando <kavi@kavishka.local>
1 parent 4435849 commit d2e315b

1 file changed

Lines changed: 24 additions & 23 deletions

File tree

src/pages/index.tsx

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,41 @@
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";
55

66
// 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";
1415

15-
import styles from './index.module.css';
16+
import styles from "./index.module.css";
1617

1718
/**
1819
* Main Homepage Component
1920
* This is the entry point for the homepage
2021
*/
2122
export default function Home(): ReactNode {
22-
const {siteConfig} = useDocusaurusContext();
23+
const { siteConfig } = useDocusaurusContext();
2324

2425
return (
25-
<Layout
26-
title={siteConfig.tagline}
26+
<Layout
27+
title={siteConfig.tagline}
2728
description="A complete, open-source developer platform for Kubernetes, ready to use from day one, built to integrate with your stack."
2829
>
29-
3030
<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 />
3839
</div>
3940
</Layout>
4041
);

0 commit comments

Comments
 (0)