Skip to content

Commit

Permalink
feat: enable venue, sponsor, cfp
Browse files Browse the repository at this point in the history
  • Loading branch information
Leko committed Jul 3, 2024
1 parent 1d0d8d3 commit 372d21c
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 18 deletions.
10 changes: 5 additions & 5 deletions 2024/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ module.exports = {
twitter: `jsconfjp`,
siteUrl: `https://jsconf.jp`,
ticketUrl: "", // "https://pretix.eu/jsconfjp/2024/",
sponsorFormUrl: "", // `https://forms.gle/GHFbBciA22xP7Jd49`,
cfpFormUrl: "",
cfpDeadline: new Date("2023-09-30T23:59:59.999+0900"),
sponsorFormUrl: "https://forms.gle/1E7XC48NzH3Z52vN9",
cfpFormUrl: "https://docs.google.com/forms/d/e/1FAIpQLScWYqrnSqD-CTnJX6GATU8IzTk6qKwJyXb8GOoVD70EbGXbDA/viewform",
cfpDeadline: new Date("2024-10-01T00:00:00.000+0900"),
previousFiscalYear: `2023`,
enableSpeakers: false,
enableVenue: false,
enableVenue: true,
enableSchedule: false,
enableSponsors: false,
enableSponsors: true,
},
plugins: [
`gatsby-plugin-typescript`,
Expand Down
2 changes: 1 addition & 1 deletion 2024/src/components/Map.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function Map(props: Props) {
<Iframe
width={width}
height={height}
src={`https://www.google.com/maps/embed/v1/place?q=place_id:ChIJWSmeUWqMGGAR8liQymoZP50&key=AIzaSyAhtEqpuBA3ChFU30d4A1bSODO-anJ54Vo&language=${i18n.language}`}
src={`https://www.google.com/maps/embed/v1/place?q=place_id:ChIJxe2InfyLGGARY7lD5QxJ2fg&key=AIzaSyAhtEqpuBA3ChFU30d4A1bSODO-anJ54Vo&language=${i18n.language}`}
frameBorder="0"
allowFullScreen
title={title ?? undefined}
Expand Down
12 changes: 6 additions & 6 deletions 2024/src/i18n/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const en = {

backToTop: "TOP",
siteName: "JSConf JP",
festivalPeriod: "Autumn 2024",
festivalPeriod: "November 23, 2024",
description:
"jsconf.jp is a JavaScript festival in Japan powered by Japan Node.js Association. This is the fourth time event of jsconf in Japan. We would love to become a bridge between Japanese Web Developers and International Web Developers.",
speakers: "Speakers",
Expand Down Expand Up @@ -38,16 +38,16 @@ export const en = {
buyTickets: "Registration",
comingSoon: "Coming soon",
venue: "Venue",
"venue.name": "KS Building Kudansakaue",
"venue.address": "〒102-0073 1-14-6 Kudankita Chiyoda-ku Tokyo",
"venue.name": "GranTokyo South Tower",
"venue.address": "Gran Tokyo South Tower, 1-chōme-9-2 Marunouchi, Chiyoda City, Tokyo 100-0005",
"venue.accessBytrain": "ACCESS BY TRAIN",
"venue.accessBytrainRoute":
"1 minute walk from Exit 1 of Kudanshita Station on Tokyo Metro Hanzomon Line, Tokyo Metro Tozai Line or Toei Shinjuku Line",
"Directly connected to JR Tokyo Station",
"venue.accessByPlane": "ACCESS BY PLANE",
"venue.accessByNaritaAirport":
"Approx. 90 minutes from Narita Airport to JR Kudanshita Station",
"Approx. 90 minutes from Narita Airport to JR Tokyo Station",
"venue.accessByHanedaAirport":
"Approx. 50 minutes from Haneda Airport to JR Kudanshita Station",
"Approx. 50 minutes from Haneda Airport to JR Tokyo Station",
"specified-commercial-transactions-act": "Commercial Summary",
"code-of-conduct": "Code of Conduct",
moreDetails: "More details",
Expand Down
12 changes: 6 additions & 6 deletions 2024/src/i18n/ja.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const ja: {
speakers: "スピーカー",
sponsors: "スポンサー",
backToTop: "TOPへ戻る",
festivalPeriod: "2024年の秋",
festivalPeriod: "2024/11/23",
guestSpeakers: "ゲストスピーカー",
goToGuests: "スピーカー一覧へ",
tickets: "チケット",
Expand All @@ -31,14 +31,14 @@ export const ja: {
"session.lang.spoken": "音声言語",
"session.lang.slides": "スライド言語",
venue: "会場アクセス",
"venue.name": "九段坂上KSビル",
"venue.address": "〒102-0073 東京都千代田区九段北1-14-6",
"venue.name": "グラントウキョウサウスタワー",
"venue.address": "〒100-6690 東京都千代田区丸の内1丁目9−2",
"venue.accessBytrain": "電車でのアクセス",
"venue.accessBytrainRoute":
"東京メトロ半蔵門線、東京メトロ東西線、都営新宿線「九段下」駅 1番出口より徒歩1分",
"JR東京駅直結",
"venue.accessByPlane": "飛行機でのアクセス",
"venue.accessByNaritaAirport": "成田空港からJR 九段下駅まで約90分",
"venue.accessByHanedaAirport": "羽田空港からJR 九段下駅まで約50分",
"venue.accessByNaritaAirport": "成田空港からJR 東京駅まで約90分",
"venue.accessByHanedaAirport": "羽田空港からJR 東京駅まで約50分",
moreDetails: "詳細",
"specified-commercial-transactions-act": "特定商取引法に基づく表示",
"code-of-conduct": "行動規範",
Expand Down
1 change: 1 addition & 0 deletions 2024/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ export default function IndexPage() {
sponsorFormUrl
cfpFormUrl
cfpDeadline
enableVenue
}
}
allSponsorsYaml(filter: { ready: { eq: true } }) {
Expand Down

0 comments on commit 372d21c

Please sign in to comment.