import { NextPage } from 'next' import { Head } from 'components/Head' import { Application } from 'components/Application' import { PopupGuild } from 'components/Application/PopupGuild/PopupGuild.stories' import { authenticationFromServerSide, AuthenticationProvider, PagePropsWithAuthentication } from 'utils/authentication' const ApplicationPage: NextPage = (props) => { return ( ) } export const getServerSideProps = authenticationFromServerSide({ shouldBeAuthenticated: true }) export default ApplicationPage