mirror of
https://github.com/SrIzan10/hc-site.git
synced 2026-05-01 10:45:23 +00:00
updates
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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 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]}
|
||||
|
||||
Reference in New Issue
Block a user