summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/pages/logout.js
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-web/opendc-web-ui/src/pages/logout.js')
-rw-r--r--opendc-web/opendc-web-ui/src/pages/logout.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/opendc-web/opendc-web-ui/src/pages/logout.js b/opendc-web/opendc-web-ui/src/pages/logout.js
index e96e0605..38d5968e 100644
--- a/opendc-web/opendc-web-ui/src/pages/logout.js
+++ b/opendc-web/opendc-web-ui/src/pages/logout.js
@@ -22,17 +22,17 @@
import React from 'react'
import Head from 'next/head'
-import AppNavbarContainer from '../containers/navigation/AppNavbarContainer'
+import { AppPage } from '../components/AppPage'
+import { PageSection, PageSectionVariants } from '@patternfly/react-core'
function Logout() {
return (
- <>
+ <AppPage>
<Head>
<title>Logged Out - OpenDC</title>
</Head>
- <AppNavbarContainer fullWidth={false} />
- <span>Logged out successfully</span>
- </>
+ <PageSection variant={PageSectionVariants.light}>Logged out successfully</PageSection>
+ </AppPage>
)
}