Skip to content

Commit 3e60b46

Browse files
Remove SmallProjectCardWithInputs and replace it by a short dedicated section with a button linking to the contact form.
1 parent fa9856d commit 3e60b46

File tree

5 files changed

+59
-120
lines changed

5 files changed

+59
-120
lines changed

docusaurus.config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,12 @@ const config: Config = {
122122
label: "Blog",
123123
position: "left",
124124
},
125+
{
126+
to: "/fundable/",
127+
label: "Fundable projects",
128+
position: "right",
129+
className:"fundable_projects"
130+
},
125131
{
126132
to: "/contact/",
127133
label: "Contact us",

src/components/fundable/MenuSideBar.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ import styles from "./styles.module.css";
44

55
const sections = [
66
{ id: 'jupyter-ecosystem', label: 'Jupyter ecosystem' },
7-
{ id: 'package-management', label: 'Package management' },
8-
{ id: 'propose-and-fund-a-project', label: 'Propose and fund a project' },
7+
{ id: 'package-management', label: 'Package management' }
98
];
109

1110
export default function MenuSideBar() {

src/components/fundable/SmallProjectCardWithInputs.tsx

Lines changed: 0 additions & 114 deletions
This file was deleted.

src/components/fundable/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import styles from "./styles.module.css";
22
import { fundableProjectsDetails } from "./projectsDetails";
33
import ProjectCategory from "./ProjectCategory";
44
import MenuSidebar from "./MenuSideBar";
5-
import { SmallProjectCardWithInputs } from "./SmallProjectCardWithInputs";
5+
import LinkToContact from "../home/LinkToContact";
66

77
export function getCategoryFromProjectPageName(pageName: string) {
88
for (const [categoryName, projectsByCategory] of Object.entries(fundableProjectsDetails)) {
@@ -32,9 +32,9 @@ export function MainAreaFundableProjects() {
3232
/>
3333
</section>
3434
<section id="propose-and-fund-a-project">
35-
<h2 className={styles.project_category_header} style={{ margin: "0px" }}>Propose and fund a project</h2>
36-
<p style={{ marginTop: "var(--ifm-spacing-lg)" }}>You have a project on the open-source data stack that you would like to fund. Please contact us with this form!</p>
37-
<SmallProjectCardWithInputs />
35+
<h2 className={styles.project_category_header} style={{ margin: "0px" }}>Can't find a project?</h2>
36+
<p style={{ marginTop: "var(--ifm-spacing-lg)" }}>If you have a project in mind that you think would be relevant to our expertise, please contact us to discuss it.</p>
37+
<LinkToContact label={"CONTACT US!"} />
3838
</section>
3939
</div>
4040
)

static/rss.xml

Lines changed: 48 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)