Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rluodev committed Jan 8, 2025
1 parent d219ed2 commit 9e15453
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 33 deletions.
16 changes: 0 additions & 16 deletions pages/fiscal-sponsorship/climate/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1281,22 +1281,6 @@ export class Organization {
}
}

/**
* Checks if the organization is recommended by 128 Collective.
* @type {boolean}
*/
get is128Recommended() {
return false
}

/**
* Checks if the organization is funded by 128 Collective.
* @type {boolean}
*/
get is128Funded() {
return false
}

/**
* Updates the organization data by making an API call.
* @returns {Organization} The updated Organization instance.
Expand Down
16 changes: 0 additions & 16 deletions pages/fiscal-sponsorship/directory/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1156,22 +1156,6 @@ export class Organization {
}
}

/**
* Checks if the organization is recommended by 128 Collective.
* @type {boolean}
*/
get is128Recommended() {
return false
}

/**
* Checks if the organization is funded by 128 Collective.
* @type {boolean}
*/
get is128Funded() {
return false
}

/**
* Updates the organization data by making an API call.
* @returns {Organization} The updated Organization instance.
Expand Down
70 changes: 69 additions & 1 deletion pages/fiscal-sponsorship/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,75 @@ export default function Page() {
</Grid>
</Container>
</Box>

{/** removed for now
<Box as="section" bg="snow" sx={{ py: 5 }}>
<Container>
<Grid columns={[null, null, 2]} gap={[4, 5]}>
<div>
<Heading
variant="headline"
as="h2"
sx={{ marginBlockStart: [null, 4] }}
>
<Balancer>
The fiscal sponsor of&nbsp;choice for the best funders.
</Balancer>
</Heading>
<Flex
sx={{
alignItems: 'center',
gap: [3, 4],
mt: 4,
img: {
width: [72, 128],
height: [72, 128],
objectFit: 'contain'
}
}}
>
{['ycjf.png', 'first.png'].map(file => (
<img
key={file}
src={`/fiscal-sponsorship/${file}`}
width={128}
height={128}
loading="lazy"
alt={file.split('.')[0].toUpperCase()}
/>
))}
</Flex>
</div>
<Card sx={{ maxWidth: 'copy', ml: [null, -4], textAlign: 'left' }}>
<Text
as="blockquote"
variant="lead"
sx={{
mt: '0 !important',
color: 'slate',
textIndent: '-0.33em'
}}
>
“Quote goes here”
</Text>
<Text
as="p"
variant="caption"
sx={{ color: 'muted', mt: 3, textIndent: '-1.5ch' }}
>
<Text as="strong" color="slate">
FirstName LastName
</Text>
, Title,{' '}
<UILink href="https://example.com">
Organization
</UILink>
</Text>
</Card>
</Grid>
</Container>
</Box>
*/}
<Container>
<Grid
columns={[null, null, 2]}
Expand Down

0 comments on commit 9e15453

Please sign in to comment.