2020-10-04 20:25:58 +00:00
|
|
|
import Button from '@/components/elements/Button';
|
2020-08-22 22:49:18 +00:00
|
|
|
import React from 'react';
|
|
|
|
import tw from 'twin.macro';
|
|
|
|
import AdminContentBlock from '@/components/admin/AdminContentBlock';
|
|
|
|
|
|
|
|
export default () => {
|
|
|
|
return (
|
|
|
|
<AdminContentBlock>
|
2020-10-04 20:25:58 +00:00
|
|
|
<div css={tw`w-full flex flex-row items-center`}>
|
|
|
|
<div css={tw`flex flex-col`}>
|
|
|
|
<h2 css={tw`text-2xl text-neutral-50 font-header font-medium`}>Users</h2>
|
|
|
|
<p css={tw`text-base text-neutral-400`}>All registered users on the system.</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<Button type={'button'} size={'large'} css={tw`h-10 ml-auto px-4 py-0`}>
|
|
|
|
New User
|
|
|
|
</Button>
|
2020-08-22 22:49:18 +00:00
|
|
|
</div>
|
|
|
|
</AdminContentBlock>
|
|
|
|
);
|
|
|
|
};
|