From a71cb60e2a632616fadf2cd8453e9c1d9d140930 Mon Sep 17 00:00:00 2001 From: Taiga KIYOKAWA <40013676+taigakiyokawa@users.noreply.github.com> Date: Thu, 26 Jan 2023 16:19:41 +0900 Subject: [PATCH 1/3] [fix] Fix date for closing application from Sat to Tue (#65) --- src/components/organisms/SpeakersSection/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/organisms/SpeakersSection/index.tsx b/src/components/organisms/SpeakersSection/index.tsx index 1c336a05..e2a1b719 100644 --- a/src/components/organisms/SpeakersSection/index.tsx +++ b/src/components/organisms/SpeakersSection/index.tsx @@ -39,7 +39,7 @@ export const SpeakersSection: FC = () => { Call for Speakers! {t('application_started')}: 2022.12.01 Thu - {t('application_closed')}: 2023.01.31 Sat + {t('application_closed')}: 2023.01.31 Tue {isTabletOrOver && ( From f0471a494a082c117e6e805a13793010ec78b9d4 Mon Sep 17 00:00:00 2001 From: maito1201 Date: Sun, 29 Jan 2023 14:09:36 +0900 Subject: [PATCH 2/3] feat: community booth section --- .../CommunityBoothSection.stories.tsx | 10 ++++++ .../organisms/CommunityBoothSection/index.tsx | 34 +++++++++++++++++++ src/components/organisms/index.ts | 1 + src/components/pages/PageTop/index.tsx | 9 ++++- src/i18n/en.json | 2 ++ src/i18n/ja.json | 2 ++ 6 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 src/components/organisms/CommunityBoothSection/CommunityBoothSection.stories.tsx create mode 100644 src/components/organisms/CommunityBoothSection/index.tsx diff --git a/src/components/organisms/CommunityBoothSection/CommunityBoothSection.stories.tsx b/src/components/organisms/CommunityBoothSection/CommunityBoothSection.stories.tsx new file mode 100644 index 00000000..8dca829a --- /dev/null +++ b/src/components/organisms/CommunityBoothSection/CommunityBoothSection.stories.tsx @@ -0,0 +1,10 @@ +import type { ComponentMeta, ComponentStory } from '@storybook/react' +import { CommunityBoothSection } from '.' + +const meta: ComponentMeta = { + component: CommunityBoothSection +} +export default meta + +const Template: ComponentStory = args => +export const Default = Template.bind({}) diff --git a/src/components/organisms/CommunityBoothSection/index.tsx b/src/components/organisms/CommunityBoothSection/index.tsx new file mode 100644 index 00000000..2d45d3a9 --- /dev/null +++ b/src/components/organisms/CommunityBoothSection/index.tsx @@ -0,0 +1,34 @@ +import type { FC } from 'react' +import Link from 'next/link' +import { Box, Typography } from '@mui/material' +import { Button } from 'src/components/atoms' +import { useTranslation } from 'react-i18next' +import { Colors } from 'src/styles/color' + +export const CommunityBoothSection: FC = () => { + const { t } = useTranslation() + + return ( + + + Community Booth + + + {t('community_booth_description')} + + + +