Skip to content

Commit aff5b1d

Browse files
committed
chore: removed unneeded images.
1 parent deb8270 commit aff5b1d

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

src/pages/index.tsx

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
import type {ReactNode} from 'react';
2-
import clsx from 'clsx';
3-
import Link from '@docusaurus/Link';
4-
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
5-
import Layout from '@theme/Layout';
6-
import HomepageFeatures from '@site/src/components/HomepageFeatures';
7-
import Heading from '@theme/Heading';
1+
import type { ReactNode } from "react";
2+
import clsx from "clsx";
3+
import Link from "@docusaurus/Link";
4+
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
5+
import Layout from "@theme/Layout";
6+
import HomepageFeatures from "@site/src/components/HomepageFeatures";
7+
import Heading from "@theme/Heading";
88

9-
import styles from './index.module.css';
9+
import styles from "./index.module.css";
1010

1111
function HomepageHeader() {
12-
const {siteConfig} = useDocusaurusContext();
12+
const { siteConfig } = useDocusaurusContext();
1313
return (
14-
<header className={clsx('hero hero--primary', styles.heroBanner)}>
14+
<header className={clsx("hero hero--primary", styles.heroBanner)}>
1515
<div className="container">
1616
<Heading as="h1" className="hero__title">
1717
{siteConfig.title}
@@ -20,8 +20,9 @@ function HomepageHeader() {
2020
<div className={styles.buttons}>
2121
<Link
2222
className="button button--secondary button--lg"
23-
to="/docs/intro">
24-
Intro to Blacksky - 5 min
23+
to="/docs/intro"
24+
>
25+
Intro to Blacksky - 5 min
2526
</Link>
2627
</div>
2728
</div>
@@ -31,12 +32,9 @@ function HomepageHeader() {
3132

3233
export default function Home(): ReactNode {
3334
return (
34-
<Layout
35-
description="Description will go into a meta tag in <head />">
35+
<Layout description="Description will go into a meta tag in <head />">
3636
<HomepageHeader />
37-
<main>
38-
<HomepageFeatures />
39-
</main>
37+
<main>{/* <HomepageFeatures /> */}</main>
4038
</Layout>
4139
);
4240
}

0 commit comments

Comments
 (0)