headplane/app/routes/_data.settings._index.tsx

14 lines
416 B
TypeScript
Raw Normal View History

import { IssueDraftIcon } from '@primer/octicons-react'
2024-03-26 16:55:20 -04:00
export default function Page() {
return (
<div className='w-96 mx-auto flex flex-col justify-center items-center text-center my-8'>
<IssueDraftIcon className='w-24 h-24 text-gray-300 dark:text-gray-500'/>
2024-03-30 04:47:46 -04:00
<p className='text-lg mt-8'>
The settings page is currently unavailable.
It will be available in a future release.
</p>
2024-03-26 16:55:20 -04:00
</div>
)
}