Skip to content

Commit

Permalink
fix: remove community booth section
Browse files Browse the repository at this point in the history
  • Loading branch information
maito1201 committed Apr 2, 2023
1 parent 34914bf commit 8349c7e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/pages/PageTop/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import type { NextPage } from 'next'
import { Layout } from 'src/components/commons'
import { useTranslation } from 'react-i18next'
// import { useSessionize } from 'src/modules/sessionize/hooks'
import { MainVisual, TopDescription, SponsorsSection, CommunityBoothSection } from 'src/components/organisms'
import { MainVisual, TopDescription, SponsorsSection } from 'src/components/organisms'

export const PageTop: NextPage = () => {
const { t } = useTranslation()

// TODO(@maito1201): 取得したデータを基にセッションデータを表示する
// const { data } = useSessionize()
// console.log('session data', data)
Expand All @@ -16,7 +13,6 @@ export const PageTop: NextPage = () => {
<MainVisual />
<TopDescription />
<SponsorsSection />
<CommunityBoothSection />
</Layout>
)
}

0 comments on commit 8349c7e

Please sign in to comment.