diff --git a/src/components/customPageComponents/TextElement.tsx b/src/components/customPageComponents/TextElement.tsx index c8a29168..51aa6fa7 100644 --- a/src/components/customPageComponents/TextElement.tsx +++ b/src/components/customPageComponents/TextElement.tsx @@ -105,7 +105,7 @@ const TextElement = styled.div` > h2 { font-family: 'InterDisplay'; font-size: var(--fontSize-50); - margin-bottom: var(--spacing-4); + margin-bottom: var(--spacing-6); font-weight: var(--fontWeight-medium); color: ${({ theme }) => theme.textPrimary}; line-height: 1; @@ -185,7 +185,7 @@ const TextElement = styled.div` ul { color: ${({ theme }) => theme.textPrimaryVariation}; font-size: var(--fontSize-22); - font-weight: var(--fontWeight-medium); + font-weight: var(--fontWeight-normal); line-height: 1.3; max-width: 700px; diff --git a/src/content/footer.md b/src/content/footer.md index 469617b7..4a4b5a30 100644 --- a/src/content/footer.md +++ b/src/content/footer.md @@ -9,7 +9,7 @@ columns: - text: Ecosystem url: https://alph.land - text: Grants - url: https://github.com/alephium/community/blob/master/Grant%26RewardProgram.md + url: /grants - text: Brand Assets url: https://github.com/alephium/alephium-brand-guide - title: Alephium diff --git a/src/content/navigation-menu.md b/src/content/navigation-menu.md index 5899a847..85a75e07 100644 --- a/src/content/navigation-menu.md +++ b/src/content/navigation-menu.md @@ -16,8 +16,6 @@ menuItems: link: https://discord.gg/XC5JaaDT7z - title: Github link: https://github.com/alephium - # - title: Grants - # link: /grants - title: Ecosystem items: - title: Tools @@ -46,7 +44,7 @@ menuItems: - title: Ambassador Program link: /ambassador - title: Grants - link: https://github.com/alephium/community/blob/master/Grant%26RewardProgram.md + link: /grants - title: Online communities link: /communities button: diff --git a/src/backup/grants.tsx b/src/pages/grants.tsx similarity index 67% rename from src/backup/grants.tsx rename to src/pages/grants.tsx index 37758695..75fbec08 100644 --- a/src/backup/grants.tsx +++ b/src/pages/grants.tsx @@ -1,8 +1,9 @@ import { graphql, PageProps, useStaticQuery } from 'gatsby' import styled, { useTheme } from 'styled-components' -import Accordion from '../components/Accordion' import Button from '../components/Button' +import Card from '../components/Card' +import CardText from '../components/CardText' import CardFooterButtonContainer from '../components/common/CardFooterButtonContainer' import CardImage from '../components/customPageComponents/CardImage' import { CardsRowSegment } from '../components/customPageComponents/CardsRow' @@ -11,11 +12,8 @@ import Grid from '../components/customPageComponents/Grid' import Page from '../components/customPageComponents/Page' import SubheaderContent from '../components/customPageComponents/SubheaderContent' import SubpageSection from '../components/customPageComponents/SubpageSection' -import TextCard from '../components/customPageComponents/TextCard' -import TextCardContent from '../components/customPageComponents/TextCardContent' import TextElement from '../components/customPageComponents/TextElement' import SectionDivider from '../components/SectionDivider' -import SimpleLink from '../components/SimpleLink' import { deviceBreakPoints } from '../styles/global-style' const grantsQuery = graphql` @@ -37,7 +35,7 @@ const grantsQuery = graphql` ` const CustomPage = (props: PageProps) => { - const { blockflowDAOLogo, primevaultLogo, contribiumLogo } = useStaticQuery(grantsQuery) + const { blockflowDAOLogo, primevaultLogo } = useStaticQuery(grantsQuery) return ( { }} content={ <> - +

Grants and Funding

@@ -70,10 +68,7 @@ const CustomPage = (props: PageProps) => { -

- Alephium Foundation Grants -
-

+

Alephium Foundation Grants

The Alephium Foundation offers grants to support builders growing the ecosystem. If you're building on Alephium, apply below to get started. @@ -161,103 +156,54 @@ const CustomPage = (props: PageProps) => { -

- Ecosystem Funding
-

-

- Beyond the Alephium Foundation, various funding options exist, depending on your project's stage, - location, or focus. -

-
- - -

Hackathons

-

- The Alephium Foundation has partnered with OnlyDust to allow Alephium-based dApps to join its ODHacks, - monthly open-source hackathons where developers build, learn, and contribute to top blockchain - ecosystems with direct input from project maintainers. -

-

- Participation is fully funded. dApps can showcase open-source repositories with open issues, receive - commits from top builders, and discover emerging talent. -

-

- For more information about OnlyDust and ODHacks, visit{' '} - - onlydust.com - -

- - -
-
-
- - - -

Grant Programs

+

Ecosystem Grant Programs

Several grant programs are run within the Alephium ecosystem, some focusing on specific domains.

- - - - -

Blockflow DAO

-

- The Alephium DAO offers its own community-driven grants to support ecosystem growth. These - grants are proposed, voted on, and funded directly by the DAO. -

-
- - - -
-
- - - - -

Primevault

-

- In partnership with Primevault, projects building on Alephium can access free platform credits - and potential funding to leverage PrimeVault's institutional-grade custody infrastructure. -

-
- - - -
-
- - - - -

Contribium

-

- The Alephium Foundation also collaborates with Contribium, a platform for bounties and small - grants. It allows anyone to sponsor tasks or initiatives, while enabling developers to earn - rewards for completing ecosystem work, contributing to open-source projects, or launching new - ideas. -

+ + + +

Blockflow DAO

+

+ The Alephium DAO offers its own community-driven grants to support ecosystem growth. These grants + are proposed, voted on, and funded directly by the DAO. +

+
+ + + +
+ + + +

Primevault

+

+ In partnership with Primevault, projects building on Alephium can access free platform credits and + potential funding to leverage PrimeVault's institutional-grade custody infrastructure. +

+
+ + + +
+ + + +

More coming soon...

- - - -
-
+ +
- + + {/*

FAQ

@@ -323,6 +269,7 @@ const CustomPage = (props: PageProps) => {
+ */} } /> @@ -343,26 +290,26 @@ const HowToApply = () => { - - + +

Profit-Oriented Applications

-
-
- - + + + +

Infrastructure & Core Tooling

-
-
- - + + + +

Developer Experience & Education

-
-
- - + + + +

Community & Ecosystem Growth

-
-
+ +
@@ -386,4 +333,13 @@ const ProjectTypesGrid = styled(Grid)` ` const CardImageStyled = styled(CardImage)` filter: ${({ theme }) => (theme.name === 'light' ? 'invert(1)' : 'none')}; + margin: var(--spacing-3); + margin-bottom: var(--spacing-2); +` + +const CenteredTextContainer = styled.div` + display: flex; + justify-content: center; + align-items: center; + flex: 1; `