Compare commits

..

5 Commits

Author SHA1 Message Date
Flatlogic Bot
f44960eb56 new page? 2025-05-07 15:31:42 +00:00
Flatlogic Bot
3f720a6985 upd users table 2025-05-07 15:29:05 +00:00
Flatlogic Bot
592e8244ec true change bg 2025-05-07 15:22:08 +00:00
Flatlogic Bot
6c17f33909 bg change 2025-05-07 14:21:14 +00:00
Flatlogic Bot
1d5dcf9815 change font 2025-05-07 14:18:22 +00:00
8 changed files with 52 additions and 31 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
node_modules/ node_modules/
*/node_modules/ */node_modules/
*/build/ */build/
**/node_modules/
**/build/
.DS_Store
.env

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{}

View File

@ -50,18 +50,6 @@ export const loadColumns = async (
editable: hasUpdatePermission, editable: hasUpdatePermission,
}, },
{
field: 'lastName',
headerName: 'Last Name',
flex: 1,
minWidth: 120,
filterable: false,
headerClassName: 'datagrid--header',
cellClassName: 'datagrid--cell',
editable: hasUpdatePermission,
},
{ {
field: 'phoneNumber', field: 'phoneNumber',
headerName: 'Phone Number', headerName: 'Phone Number',
@ -86,19 +74,6 @@ export const loadColumns = async (
editable: hasUpdatePermission, editable: hasUpdatePermission,
}, },
{
field: 'disabled',
headerName: 'Disabled',
flex: 1,
minWidth: 120,
filterable: false,
headerClassName: 'datagrid--header',
cellClassName: 'datagrid--cell',
editable: hasUpdatePermission,
type: 'boolean',
},
{ {
field: 'avatar', field: 'avatar',

View File

@ -117,6 +117,12 @@ const menuAside: MenuAsideItem[] = [
icon: icon.mdiFileCode, icon: icon.mdiFileCode,
permissions: 'READ_API_DOCS', permissions: 'READ_API_DOCS',
}, },
{
href: '/example',
label: 'Example',
icon: icon.mdiChartTimelineVariant,
},
]; ];
export default menuAside; export default menuAside;

View File

@ -0,0 +1,27 @@
import Head from 'next/head';
import CardBox from '../components/CardBox';
import LayoutAuthenticated from '../layouts/Authenticated';
import SectionMain from '../components/SectionMain';
import SectionTitleLineWithButton from '../components/SectionTitleLineWithButton';
import { getPageTitle } from '../config';
import { mdiChartTimelineVariant } from '@mdi/js';
const Example = () => (
<>
<Head>
<title>{getPageTitle('Example')}</title>
</Head>
<LayoutAuthenticated>
<SectionMain>
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title="Example">
{''}
</SectionTitleLineWithButton>
<CardBox>
{/* Page content goes here. */}
</CardBox>
</SectionMain>
</LayoutAuthenticated>
</>
);
export default Example;

View File

@ -36,7 +36,7 @@ export const basic: StyleObject = {
navBarItemLabelActiveColor: 'text-blue-600', navBarItemLabelActiveColor: 'text-blue-600',
overlay: 'from-gray-700 via-gray-900 to-gray-700', overlay: 'from-gray-700 via-gray-900 to-gray-700',
activeLinkColor: 'bg-gray-100/70', activeLinkColor: 'bg-gray-100/70',
bgLayoutColor: 'bg-gray-50', bgLayoutColor: 'bg-gradient-to-r from-blue-100 to-sky-300',
iconsColor: 'text-blue-500', iconsColor: 'text-blue-500',
cardsColor: 'bg-white', cardsColor: 'bg-white',
focusRingColor: focusRingColor:
@ -64,7 +64,7 @@ export const white: StyleObject = {
navBarItemLabelActiveColor: 'text-black', navBarItemLabelActiveColor: 'text-black',
overlay: 'from-white via-gray-100 to-white', overlay: 'from-white via-gray-100 to-white',
activeLinkColor: 'bg-gray-100/70', activeLinkColor: 'bg-gray-100/70',
bgLayoutColor: 'bg-gray-50', bgLayoutColor: 'bg-gradient-to-r from-sky-200 to-sky-500',
iconsColor: 'text-blue-500', iconsColor: 'text-blue-500',
cardsColor: 'bg-white', cardsColor: 'bg-white',
focusRingColor: focusRingColor:

View File

@ -11,6 +11,10 @@ module.exports = {
gray: 'gray', gray: 'gray',
}, },
extend: { extend: {
fontFamily: {
sans: ['Comic Sans MS', 'Comic Sans', 'cursive'],
},
zIndex: { zIndex: {
'-1': '-1', '-1': '-1',
}, },