We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36b45dc commit 80d2923Copy full SHA for 80d2923
frontend/pages/program/keynote.tsx
@@ -0,0 +1,27 @@
1
+import React from 'react'
2
+import type { NextPage, GetServerSideProps } from 'next'
3
+import { useTranslation } from 'react-i18next'
4
+import { PageName } from '../../data/enums/PageName'
5
+import PageTitle from '../../components/core/PageTitle'
6
+import { PageProps } from '../../interfaces/PageProps'
7
+
8
+const Keynote: NextPage = (props: PageProps) => {
9
+ const { t } = useTranslation()
10
11
+ return (
12
+ <div>
13
+ <PageTitle title={props.pageName} />
14
+ {t('label:preparing')}
15
+ </div>
16
+ )
17
+}
18
19
+export const getServerSideProps: GetServerSideProps = async () => {
20
+ return {
21
+ props: {
22
+ title: PageName.Keynote
23
+ }
24
25
26
27
+export default Keynote
0 commit comments