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

Add Growth Support info doc #1052

Merged
merged 4 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
73 changes: 73 additions & 0 deletions docs/growth/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
---
sidebar_position: 1
title: Growth
description: Get advice, support, and resources for each stage of development for your project.
---

At each stage of your project, you can get advice, support, and resources from the Flow ecosystem. Here's a breakdown of _what you are doing_ and _what support we offer_ at each stage:

## Product Idea

You've got an **idea** for an app, game, or project that you want to build on Flow.

### What you are doing

* Developing the idea in a written format, such as a pitch deck, whitepaper, design doc, or business plan
* Writing software
* Joining a hackathon or buildathon

### What support we offer

* Technical support
* Product support
* Marketing support for your launch
* DevRel

## MVP/Demo/Hackathon Project Complete

You've got something that works in a place others can use it and experience key features of your product.

### What you are doing

* Writing software
* Integrating with service providers
* Getting user feedback and improving your product

### What support we offer

* Direct contact with Flow Foundation through a DevRel Lead.
* Feedback and Guidence from the Flow Foundation team

## Live product on mainnet

Real people are using your app regularly and doing the types of things that you are or will eventually generate revenue from (even if it's still a small number of users).

### What you are doing

* Acquiring users
* Tracking metrics
* Improving your product
* Raising funds
* Micro grants

### What support we offer

* BizDev Support (intros, etc)
* Dedicated slack or tg channel
* DevRel

## Product market fit

You've got an app and are meeting the needs of regular customers. Core features are implemented, edge cases are handled, and most of your asterisks are resolved.

### What you are doing

* Acquiring users
* Tracking metrics
* Improving your product

### What support we offer

* Fundraising support (intros to investor network)
* Grants tied to bigger ecosystem milestones
* DevRel
18 changes: 12 additions & 6 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,11 @@ const config = {
},
...(process.env.GTAG
? {
gtag: {
trackingID: process.env.GTAG,
anonymizeIP: true,
},
}
gtag: {
trackingID: process.env.GTAG,
anonymizeIP: true,
},
}
: {}),
}),
],
Expand Down Expand Up @@ -284,6 +284,12 @@ const config = {
label: 'Ecosystem',
activeBasePath: '/ecosystem',
},
{
to: 'growth',
position: 'left',
label: 'Growth',
activeBasePath: '/growth',
},
{
type: 'custom-connectButton',
position: 'right',
Expand Down Expand Up @@ -645,7 +651,7 @@ const config = {
clientModules: [require.resolve('./src/modules/toolscards.ts')],

customFields: {
flowNetwork,
flowNetwork,
},
};

Expand Down
Loading