mirror of
https://github.com/System-End/site.git
synced 2026-04-19 22:05:11 +00:00
Tighten Workshops Card
This commit is contained in:
parent
1ca2540d0e
commit
a0b331f8c6
2 changed files with 9 additions and 9 deletions
|
|
@ -40,7 +40,8 @@ const WorkshopCard = ({
|
|||
'& span': {
|
||||
lineHeight: 1.25
|
||||
},
|
||||
maxWidth: '250px'
|
||||
maxWidth: '250px',
|
||||
height: '250px'
|
||||
}}
|
||||
{...props}
|
||||
>
|
||||
|
|
@ -72,7 +73,8 @@ export default function Workshops({ data, stars }) {
|
|||
sx={{
|
||||
backgroundColor: 'elevated',
|
||||
background:
|
||||
'linear-gradient(32deg, rgba(51, 142, 218, 0.9) 0%, rgba(51, 214, 166, 0.9) 100%)'
|
||||
'linear-gradient(32deg, rgba(51, 142, 218, 0.9) 0%, rgba(51, 214, 166, 0.9) 100%)',
|
||||
height: 'fit-content'
|
||||
}}
|
||||
github_link="https://github.com/hackclub/workshops"
|
||||
stars={stars}
|
||||
|
|
@ -81,8 +83,8 @@ export default function Workshops({ data, stars }) {
|
|||
<Text variant="title" as="h3" sx={{ fontSize: ['36px', 4, 5] }}>
|
||||
Workshops
|
||||
</Text>
|
||||
<Grid columns={[1, 2, 2]}>
|
||||
<Flex sx={{ flexDirection: 'column' }}>
|
||||
<Grid columns={[1, 2, 2]} sx={{ gap: 4, height: 'fit-content' }}>
|
||||
<Flex sx={{ flexDirection: 'column', height: 'fit-content' }}>
|
||||
<Text as="p" variant="subtitle">
|
||||
100+ community-contributed, self-guided coding tutorials and ideas.
|
||||
Learn to code by building, one project at a time.
|
||||
|
|
@ -94,7 +96,7 @@ export default function Workshops({ data, stars }) {
|
|||
primary="white"
|
||||
sx={{ color: 'blue', mt: [3, 3, 4] }}
|
||||
>
|
||||
Browse a workshop
|
||||
Browse The Workshops
|
||||
</Buttons>
|
||||
<Buttons
|
||||
// content="click to learn more about how to submit a workshop"
|
||||
|
|
@ -102,11 +104,11 @@ export default function Workshops({ data, stars }) {
|
|||
link="https://workshops.hackclub.com/submit-a-workshop/"
|
||||
icon="event-add"
|
||||
>
|
||||
Build a workshop
|
||||
Build A Workshop
|
||||
</Buttons>
|
||||
</Flex>
|
||||
<Grid
|
||||
sx={{ display: ['none', 'grid', 'grid'], gap: 3 }}
|
||||
sx={{ display: ['none', 'grid', 'grid'] }}
|
||||
columns={[1, 1, 1, 2]}
|
||||
>
|
||||
<WorkshopCard
|
||||
|
|
|
|||
|
|
@ -858,8 +858,6 @@ function Page({
|
|||
margin: 'auto'
|
||||
}}
|
||||
>
|
||||
|
||||
|
||||
<Box>
|
||||
<Text as="p" variant="eyebrow" sx={{ fontSize: ['22px', 2, 3], textAlign: 'center' }}>
|
||||
We've got a lot going on - Let’s recap
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue