2020-08-22 15:09:48 -06:00
|
|
|
import React from 'react';
|
2020-08-22 16:49:18 -06:00
|
|
|
import tw from 'twin.macro';
|
|
|
|
import AdminContentBlock from '@/components/admin/AdminContentBlock';
|
2020-08-22 15:09:48 -06:00
|
|
|
|
|
|
|
export default () => {
|
|
|
|
return (
|
2021-01-07 09:44:24 -07:00
|
|
|
<AdminContentBlock title={'Settings'}>
|
2021-01-10 11:34:14 -07:00
|
|
|
<div css={tw`w-full flex flex-row items-center mb-8`}>
|
|
|
|
<div css={tw`flex flex-col flex-shrink`} style={{ minWidth: '0' }}>
|
|
|
|
<h2 css={tw`text-2xl text-neutral-50 font-header font-medium`}>Settings</h2>
|
|
|
|
<p css={tw`text-base text-neutral-400 whitespace-nowrap overflow-ellipsis overflow-hidden`}>Configure and manage settings for Pterodactyl.</p>
|
|
|
|
</div>
|
2020-08-22 16:49:18 -06:00
|
|
|
</div>
|
|
|
|
</AdminContentBlock>
|
2020-08-22 15:09:48 -06:00
|
|
|
);
|
|
|
|
};
|