21 lines
780 B
TypeScript
21 lines
780 B
TypeScript
import Button from '@/components/elements/Button';
|
|
import React from 'react';
|
|
import tw from 'twin.macro';
|
|
import AdminContentBlock from '@/components/admin/AdminContentBlock';
|
|
|
|
export default () => {
|
|
return (
|
|
<AdminContentBlock>
|
|
<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`}>Nests</h2>
|
|
<p css={tw`text-base text-neutral-400`}>All nests currently available on this system.</p>
|
|
</div>
|
|
|
|
<Button type={'button'} size={'large'} css={tw`h-10 ml-auto px-4 py-0`}>
|
|
New Nest
|
|
</Button>
|
|
</div>
|
|
</AdminContentBlock>
|
|
);
|
|
};
|