Skip to content

Commit 67178ff

Browse files
Fix build and add missing files after rebase.
1 parent b7da869 commit 67178ff

File tree

13 files changed

+664
-0
lines changed

13 files changed

+664
-0
lines changed

package-lock.json

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import React from "react";
2+
3+
export default function ProgressBar({ value = 0, color = '#4caf50' }) {
4+
return (
5+
<div style={{ marginBottom: "10px" }}>
6+
<div style={{
7+
background: '#eee',
8+
borderRadius: '16px',
9+
border: 'solid 0.5px',
10+
height: '21px',
11+
width: '190px',
12+
}}>
13+
14+
<div style={{
15+
width: `${value}%`,
16+
background: color,
17+
border: 'solid 0.5px',
18+
height: '100%',
19+
borderRadius: '16px',
20+
transition: 'width 0.3s ease-in-out',
21+
}} />
22+
</div>
23+
</div>
24+
);
25+
}

src/pages/fundable.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
2+
import Layout from '@theme/Layout';
3+
import FundableProjects from '../components/fundable';
4+
import Footer from "../components/footer/Footer";
5+
6+
export default function FundableProjectsPage(): JSX.Element {
7+
const { siteConfig } = useDocusaurusContext();
8+
return (
9+
<Layout>
10+
<FundableProjects />
11+
<Footer/>
12+
</Layout>
13+
);
14+
}

static/img/icons/BlueCaret.svg

Lines changed: 28 additions & 0 deletions
Loading

static/img/icons/Dollar.svg

Lines changed: 23 additions & 0 deletions
Loading

static/img/icons/Empty.svg

Lines changed: 55 additions & 0 deletions
Loading
Lines changed: 102 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)