-
Notifications
You must be signed in to change notification settings - Fork 57
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
Brian doyle/revamp root #1124
Brian doyle/revamp root #1124
Changes from 19 commits
e1a4a1e
e2cc389
a2cae28
f35ae72
5a453e6
98dbb51
839b11c
dceeb28
ed2a594
7425e22
e3e56f5
bbebbf0
3e8a00a
b938993
6a12d91
41b773b
4f33422
c3f041d
cb7979f
c300884
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
title: Grants | ||
description: Discover grant opportunities and funding programs available for Flow developers | ||
sidebar_position: 5 | ||
sidebar_custom_props: | ||
icon: 🌱 | ||
--- | ||
|
||
# Flow Developer Grants | ||
|
||
The Flow Foundation provides grants to support developers and teams building tools and products that enhance the Flow ecosystem. | ||
|
||
## Focus Areas | ||
|
||
We are particularly interested in projects across these key areas: | ||
|
||
- **Telegram Miniapps**: Building integrations and applications for the Telegram ecosystem | ||
- **DeFi**: Innovative decentralized finance solutions | ||
- **AI Agents**: Artificial intelligence and autonomous systems | ||
- **Sports**: Applications and platforms in the sports and gaming sector | ||
|
||
## How to Apply | ||
|
||
1. Visit the [Flow Developer Grants Repository](https://github.com/onflow/developer-grants) | ||
2. Create a new issue using the "Grant Application" template | ||
3. Fill out all required details about your project |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
title: Hackathons | ||
description: Participate in Flow hackathons to build, learn, and win prizes | ||
sidebar_position: 6 | ||
sidebar_custom_props: | ||
icon: 🚀 | ||
--- | ||
|
||
# Flow World Tour Hackathons | ||
|
||
Some of the most groundbreaking blockchain projects began as hackathon ideas—CryptoKitties, the game that revolutionized NFTs, was first built at the ETHGlobal Waterloo hackathon. Your project could be next. | ||
|
||
## Flow World Tour | ||
|
||
We're bringing together builders, creators, and innovators through a series of global hackathons—both in-person and online. These events are more than just competitions; they’re an opportunity to experiment, collaborate, and turn bold ideas into reality. | ||
|
||
### Why Join? | ||
|
||
#### **Build & Learn** | ||
|
||
Get hands-on experience with Flow while accessing expert mentorship, technical workshops, and valuable resources to refine your skills on the cutting edge, from AI agents to next-gen DeFi. | ||
|
||
#### **Network & Connect** | ||
|
||
Meet like-minded builders, potential co-founders, and potential investors. These events are a gateway to becoming part of the global Flow community. | ||
|
||
#### **Win & Launch** | ||
|
||
With substantial prize pools, industry recognition, and the chance to launch your project, hackathons can be the stepping stone to your next big startup, side-project, or public good. | ||
|
||
## Find Your Flow State | ||
|
||
Stay ahead of upcoming hackathons and exclusive announcements. [Join Flow World Tour on Telegram](https://t.me/flow_world_tour). |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: VCs & Funds | ||
description: Connect with venture capital firms and investment funds supporting Flow projects | ||
sidebar_position: 4 | ||
sidebar_custom_props: | ||
icon: 💼 | ||
--- | ||
|
||
# VCs & Funds | ||
|
||
Building a successful Web3 project requires more than just great technology - having the right investors and partners can make all the difference. The Flow ecosystem is supported by some of the world's leading venture capital firms and crypto-native funds. | ||
|
||
Research shows that warm introductions can increase your chances of securing funding by up to 500% more liley compared to cold outreach. The Flow Foundation can help facilitate introductions to our network of trusted investors who have a deep understanding of the Flow ecosystem and web3. Reach out to your local dev-rel in [office hours](https://calendar.google.com/calendar/u/0/embed?src=c_47978f5cd9da636cadc6b8473102b5092c1a865dd010558393ecb7f9fd0c9ad0@group.calendar.google.com) or [discord](https://discord.gg/flow) to get a warm introduction. | ||
|
||
<div style={{userSelect: "none"}}> | ||
<iframe | ||
className="airtable-embed" | ||
src="https://airtable.com/embed/appl4lT5epHlx31oE/shrhjjDu3V4cCoMM6?viewControls=on" | ||
frameBorder="0" | ||
onMouseWheel="" | ||
style={{ | ||
width: "100%", | ||
height: "533px", | ||
background: "transparent", | ||
border: "1px solid #ccc" | ||
}} | ||
/> | ||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export type ColorOption = 'green' | 'blue' | 'purple' | 'teal' | 'black' | 'white'; | ||
export type ColorOption = 'green' | 'blue' | 'purple' | 'teal' | 'black' | 'white' | 'flowgreen'; | ||
|
||
export const colors: Record<ColorOption, { light: string; dark: string }> = { | ||
green: { | ||
|
@@ -25,4 +25,8 @@ export const colors: Record<ColorOption, { light: string; dark: string }> = { | |
light: 'bg-white', | ||
dark: 'bg-gray-100', | ||
}, | ||
flowgreen: { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we just change green to be flow green? or they vary and are both required? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Both are required. I think the flow green is too neon to use throughout, which is why Fernando did a milder one. |
||
light: 'bg-[#01EF8B]', | ||
dark: 'bg-[#01EF8B]' | ||
}, | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
import React from 'react'; | ||
import { colors } from '@site/src/constants/colors'; | ||
import { useProgress } from '@site/src/hooks/use-progress'; | ||
import { useCurrentUser } from '@site/src/hooks/use-current-user'; | ||
|
||
export const GoldStarPanel: React.FC = () => { | ||
const { getProgress } = useProgress(); | ||
const { user } = useCurrentUser(); | ||
|
||
const handleAskFlowAI = (e: React.MouseEvent) => { | ||
e.preventDefault(); | ||
|
||
const el = document.querySelector('ask-cookbook') as HTMLElement & { | ||
shadowRoot?: ShadowRoot; | ||
}; | ||
if (!el) { | ||
console.warn('ask-cookbook element not found'); | ||
return; | ||
} | ||
|
||
const shadow = el.shadowRoot; | ||
if (!shadow) { | ||
console.warn('ask-cookbook has no shadowRoot'); | ||
return; | ||
} | ||
|
||
const button = shadow.querySelector( | ||
'#ask-cookbook-button', | ||
) as HTMLButtonElement; | ||
if (!button) { | ||
console.warn( | ||
'Internal #ask-cookbook-button not found in the shadow root', | ||
); | ||
return; | ||
} | ||
|
||
button.click(); | ||
}; | ||
|
||
return ( | ||
<div className="flex flex-col gap-4 h-full"> | ||
<div className="flex gap-2"> | ||
<button | ||
onClick={() => window.open('https://calendar.google.com/calendar/embed?src=c_47978f5cd9da636cadc6b8473102b5092c1a865dd010558393ecb7f9fd0c9ad0%40group.calendar.google.com', '_blank')} | ||
className={`flex-1 ${colors.black.dark} text-white px-4 py-2 rounded-xl hover:bg-gray-700 appearance-none cursor-pointer border-0`} | ||
> | ||
Office Hours | ||
</button> | ||
<button | ||
onClick={() => window.open('https://github.com/orgs/onflow/discussions', '_blank')} | ||
className={`flex-1 ${colors.black.dark} text-white px-4 py-2 rounded-xl hover:bg-gray-700 appearance-none cursor-pointer border-0`} | ||
> | ||
Discussions | ||
</button> | ||
<button | ||
onClick={handleAskFlowAI} | ||
className={`flex-1 ${colors.black.dark} text-white px-4 py-2 rounded-xl hover:bg-gray-700 appearance-none cursor-pointer border-0`} | ||
> | ||
Ask Flow AI | ||
</button> | ||
</div> | ||
|
||
<div className={`${colors.black.dark} p-6 rounded-lg shadow-lg flex-1`}> | ||
<div className="w-full bg-gray-200 rounded-full h-2.5 dark:bg-gray-700"> | ||
<div className={`${colors.flowgreen.light} h-2.5 rounded-full`} style={{ width: `${user.loggedIn ? getProgress() * 100 : 0}%` }}></div> | ||
</div> | ||
<p className="text-sm text-gray-100 mt-2"> | ||
{user.loggedIn | ||
? `Profile Completion: ${Math.round(getProgress() * 100)}%` | ||
: 'Please connect your wallet and create a profile'} | ||
</p> | ||
</div> | ||
</div> | ||
); | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React from 'react'; | ||
import { NewsCarousel } from '../NewsCarousel'; | ||
import { GoldStarPanel } from '../GoldStarPanel'; | ||
|
||
export const HomeHeader: React.FC = () => { | ||
return ( | ||
<div className="relative p-8"> | ||
<div className="relative pl-8"> | ||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 pl-8"> | ||
<div className="lg:col-span-2"> | ||
<NewsCarousel /> | ||
</div> | ||
<div> | ||
<GoldStarPanel /> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dont think the UI supports it being optional right now. I'd change the line below to support that if you want that and make sure to test it.