16 lines
687 B
TypeScript
16 lines
687 B
TypeScript
import React from 'react';
|
|
import tw from 'twin.macro';
|
|
import AdminContentBlock from '@/components/admin/AdminContentBlock';
|
|
|
|
export default () => {
|
|
return (
|
|
<AdminContentBlock title={'New User'}>
|
|
<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`}>Create User</h2>
|
|
<p css={tw`text-base text-neutral-400 whitespace-nowrap overflow-ellipsis overflow-hidden`}>Add a new user to the panel.</p>
|
|
</div>
|
|
</div>
|
|
</AdminContentBlock>
|
|
);
|
|
};
|