This commit is contained in:
rluo.dev
2025-01-07 16:40:41 -08:00
parent d219ed2bd3
commit 9e15453ae8
3 changed files with 69 additions and 33 deletions

View File

@@ -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.

View File

@@ -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.

View File

@@ -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]}