Skip to content

Commit

Permalink
✨Updating GitPoap docusaurus
Browse files Browse the repository at this point in the history
  • Loading branch information
tchowd committed Dec 12, 2022
1 parent 52ac941 commit bb5501b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docusaurus/src/components/Contributions/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import CodeBlock from '@theme/CodeBlock';
import clsx from 'clsx';
import React from 'react';
import styles from './styles.module.css';
// import styles from './styles.module.css';
// organize-imports-ignore
import * as ee from '../../../../src/index';
import Link from '@docusaurus/Link';
Expand Down Expand Up @@ -63,9 +63,9 @@ function Contribute({ title, src, description }: ContributeItem) {
export default function HomepageContributions(): JSX.Element {
return (
<>
<section className={styles.features}>
<section>
<div className="container">
<section style={{ marginTop: '80px' }}>
<section style={{ marginTop: '120px', marginBottom: '100px' }}>
<div>
<div className="row" style={{ justifyContent: 'center' }}>
{ContributeList.map((props, idx) => (
Expand Down
2 changes: 2 additions & 0 deletions docusaurus/src/components/HomepageFeatures/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import styles from './styles.module.css';
// organize-imports-ignore
import * as ee from '../../../../src/index';
import Link from '@docusaurus/Link';
import HomepageContributions from '../Contributions';

interface FeatureItem {
title: string;
Expand Down Expand Up @@ -101,6 +102,7 @@ export default function HomepageFeatures(): JSX.Element {
</div>
</div>
</section>
<HomepageContributions />
<br />
<br />
<h2>Utils</h2>
Expand Down
2 changes: 0 additions & 2 deletions docusaurus/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import HomepageFeatures from '@site/src/components/HomepageFeatures';
import Layout from '@theme/Layout';
import clsx from 'clsx';
import React from 'react';
import HomepageContributions from 'src/components/Contributions';
import styles from './index.module.css';

function HomepageHeader() {
Expand All @@ -31,7 +30,6 @@ export default function Home(): JSX.Element {
<HomepageHeader />
<main>
<HomepageFeatures />
<HomepageContributions />
</main>
</Layout>
);
Expand Down

0 comments on commit bb5501b

Please sign in to comment.