Skip to content

Commit

Permalink
Merge pull request #15 from lego37yoon/main
Browse files Browse the repository at this point in the history
웹사이트 최신화 및 개선
  • Loading branch information
sukso96100 authored Jun 29, 2024
2 parents 6aeaa87 + 568bb44 commit c03a4d9
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 18 deletions.
29 changes: 21 additions & 8 deletions src/components/FeaturedSpeakers.astro
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ featuredSpeakers.push({
{
featuredSpeakers.map((speaker) => (
<Col size={4} medium={3}>
<div class="p-media-object--large">
<a class="p-media-object--large p-button--base" href={speaker.url} target="_blank">
<img
src={speaker.profileImg ?
`https://events.canonical.com/user/${speaker.profileImg}/picture-default`
Expand All @@ -58,17 +58,15 @@ featuredSpeakers.push({
loading="lazy"
/>
<div class="p-media-object__details">
<a href={speaker.url}>
<h3>
{speaker.name}
</h3>
</a>
<h3>
{speaker.name}
</h3>
<p class="p-media-object__content">
{speaker.title}
</p>
<ul class="p-media-object__meta-list" />
</div>
</div>
</a>
</Col>
))
}
Expand All @@ -81,4 +79,19 @@ featuredSpeakers.push({
</Col>
</Row>
</Strip>
}
}

<style>
h3 {
color: var(--vf-color-link-default);
}

h3, .p-media-object__content {
margin-bottom: 0;
}

.p-button--base {
text-align: start;
justify-content: start;
}
</style>
6 changes: 4 additions & 2 deletions src/pages/[lang]/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@ const t = useTranslations(lang);
<Row>
<Col size={3} />
<Col size={9}>
<a href={`/cfp`} class="p-button--positive">{t("home.cfp")}</a>
<a href={`/tickets`} class="p-button">{t("home.tickets")}</a>
<!--
<a href={`/schedules`} class="p-button--positive">{t("nav.schedules")}</a>
-->
<a href={`/tickets`} class="p-button--positive" target="_blank">{t("home.tickets")}</a>
<a href={`/${lang}/sponsors/become-a-sponsor/`} class="p-button"
>{t("home.sponsor")}</a
>
Expand Down
8 changes: 4 additions & 4 deletions src/pages/en/venue-and-safety.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ import OpenStreetMap from "../../components/OpenStreetMap.astro";

### Hall

> Some events, such as opening, closing, lightning talks, will be held in all halls by removing the partitions.
> Some events, such as opening, closing, key signing party, lightning talks, will be held in all halls by removing the partitions.
![Hall](/venue/hall.png)

- Hall A: Talks
- Hall B: Workshops
- Hall C: Talks & BoFs
- Hall A: Workshops
- Hall B: Talks & BoFs
- Hall C: Talks

You can charge your electronic devices using power strips inside the desks, and WiFi connection will be provided for staffs, speakers, and attendees who attends workshop session during the event.

Expand Down
8 changes: 4 additions & 4 deletions src/pages/ko/venue-and-safety.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ import OpenStreetMap from "../../components/OpenStreetMap.astro";

### Hall

> 개회, 폐회, 라이트닝 토크 등 일부 행사는 홀 사이의 칸막이를 제거하여 전체 홀 통합으로 진행됩니다.
> 개회, 폐회, 키 사이닝 파티, 라이트닝 토크 등 일부 행사는 홀 사이의 칸막이를 제거하여 전체 홀 통합으로 진행됩니다.
![홀 전경](/venue/hall.png)

- Hall A: 강연
- Hall B: 워크샵
- Hall C: 강연 및 BoF
- Hall A: 워크샵
- Hall B: 강연 및 BoF
- Hall C: 강연

책상에 비치된 멀티탭을 이용하여 전자기기의 충전이 가능하며, WiFi는 행사 당일 워크숍 등 WiFi가 필수적으로 필요한 세션과 행사 관계자에 한해서만 제공합니다.

Expand Down

0 comments on commit c03a4d9

Please sign in to comment.