Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate "Get Funding" callout #120

Merged
merged 2 commits into from
May 18, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions components/Membership.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import { IconButtonLink, Section } from "./"
import { DISCORD_INVITE_URL } from "../constants"

const journeys = [
{
heading: "Get Funding",
description:
"Tell us about your spicy Web3 project and show us why we should fund it. Receiving a grant also gets you DAO membership.",
action: "Apply for a Grant",
url: "https://forum.metacartel.org/t/guide-how-to-post-a-funding-proposal/74",
},
// {
// heading: "Get Funding",
// description:
// "Tell us about your spicy Web3 project and show us why we should fund it. Receiving a grant also gets you DAO membership.",
// action: "Apply for a Grant",
// url: "https://forum.metacartel.org/t/guide-how-to-post-a-funding-proposal/74",
// },
{
heading: "Give Funding",
description:
Expand Down Expand Up @@ -45,7 +45,7 @@ export const Membership = () => {
voting power in the DAO that jumpstarts the most impactful projects in
the ecosystem.
</Box>
<SimpleGrid columns={[1, null, 3]} gap={[16, null, null, 24]} w="100%">
<SimpleGrid columns={[1, null, journeys.length]} gap={[16, null, null, 24]} w="100%">
{journeys.map(({ heading, description, action, url }) => (
<Flex direction="column" key={url}>
<Heading as="h3" fontSize="2xl" mt={4}>
Expand Down