15 lines
314 B
TypeScript
15 lines
314 B
TypeScript
// Component Imports
|
|
import ComingSoon from '@views/pages/misc/ComingSoon'
|
|
|
|
// Server Action Imports
|
|
import { getServerMode } from '@core/utils/serverHelpers'
|
|
|
|
const ComingSoonPage = async () => {
|
|
// Vars
|
|
const mode = await getServerMode()
|
|
|
|
return <ComingSoon mode={mode} />
|
|
}
|
|
|
|
export default ComingSoonPage
|