Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge dev into production #1538

Merged
merged 8 commits into from
Oct 25, 2023
16 changes: 8 additions & 8 deletions _data/posts/opening-session.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,33 @@ title: Opening Session
published_date: 2023-09-01T10:53:57.266Z
video:
url: https://youtu.be/WiY4Kt_4ulQ
id: qq6_GCZzxwk
id: WiY4Kt_4ulQ
data:
kind: youtube#video
etag: -JyRcNQPofO0q716vs2DzPyb-P4
id: qq6_GCZzxwk
id: WiY4Kt_4ulQ
snippet:
publishedAt: 2023-09-01T14:23:14.000Z
liveBroadcastContent: none
thumbnails:
default:
url: https://i.ytimg.com/vi/qq6_GCZzxwk/default.jpg
url: https://i.ytimg.com/vi/WiY4Kt_4ulQ/default.jpg
width: 120
height: 90
medium:
url: https://i.ytimg.com/vi/qq6_GCZzxwk/mqdefault.jpg
url: https://i.ytimg.com/vi/WiY4Kt_4ulQ/mqdefault.jpg
width: 320
height: 180
high:
url: https://i.ytimg.com/vi/qq6_GCZzxwk/hqdefault.jpg
url: https://i.ytimg.com/vi/WiY4Kt_4ulQ/hqdefault.jpg
width: 480
height: 360
standard:
url: https://i.ytimg.com/vi/qq6_GCZzxwk/sddefault.jpg
url: https://i.ytimg.com/vi/WiY4Kt_4ulQ/sddefault.jpg
width: 640
height: 480
maxres:
url: https://i.ytimg.com/vi/qq6_GCZzxwk/maxresdefault.jpg
url: https://i.ytimg.com/vi/WiY4Kt_4ulQ/maxresdefault.jpg
width: 1280
height: 720
defaultAudioLanguage: en-US
Expand Down Expand Up @@ -64,7 +64,7 @@ video:
licensedContent: false
contentRating: {}
projection: rectangular
image: /assets/youthumb_qq6_gczzxwk_maxres.png
image: /assets/youthumb_WiY4Kt_4ulQ_maxres.png
category: community-and-events
topic:
- 043289e7-3b15-4840-9172-534d12593089
6 changes: 5 additions & 1 deletion workspaces/website/src/blocks/ListCardItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ interface ListCardItems {
website_url: string;
twitter: string;
image: string;
type_list: {
type: string;
url: string;
}[];
}

interface Props extends LocaleProps {
Expand All @@ -33,7 +37,6 @@ export default function ListCardItems({
card_list_items
}:
Props): JSX.Element {

return (
<Box>
<Container maxW="1062px">
Expand All @@ -49,6 +52,7 @@ Props): JSX.Element {
key={`${card.title}-${i}`}
description={card.description}
title={card.title}
type_list={card.type_list}
/>
);
})}
Expand Down
2 changes: 1 addition & 1 deletion workspaces/website/src/pages/jobs/JobsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const JobsPageLayout = ({ params, seo }: Pick<Props, "params" | "seo">) => {
<>
<Text
color={'muted'}
style={{marginTop: '-36px'}}
style={{marginTop: '-40px'}}
variant={'body'}
>
<MarkdownBlock body={seo.description} />
Expand Down