Autosave: 20260220-143017

This commit is contained in:
Flatlogic Bot 2026-02-20 14:30:18 +00:00
parent 71327bddd8
commit 22559112f0
2 changed files with 42 additions and 0 deletions

View File

@ -17,6 +17,14 @@ const menuAside: MenuAsideItem[] = [
label: 'Export Wizard',
icon: icon.mdiFileExportOutline,
},
{
label: 'Exporting Testing for ET Grow',
},
{
href: '/et-grow-export',
label: 'ET Grow Export',
icon: icon.mdiFileExportOutline,
},
{
href: '/users/users-list',

View File

@ -0,0 +1,34 @@
import { mdiFileExportOutline } from '@mdi/js';
import Head from 'next/head';
import React, { ReactElement } from 'react';
import CardBox from '../components/CardBox';
import LayoutAuthenticated from '../layouts/Authenticated';
import SectionMain from '../components/SectionMain';
import SectionTitleLineWithButton from '../components/SectionTitleLineWithButton';
import { getPageTitle } from '../config';
const ETGrowExport = () => {
return (
<>
<Head>
<title>{getPageTitle('ET Grow Export')}</title>
</Head>
<SectionMain>
<SectionTitleLineWithButton icon={mdiFileExportOutline} title="ET Grow Export" main>
{''}
</SectionTitleLineWithButton>
<CardBox>
<div className="text-center py-24 text-gray-500 dark:text-slate-400">
Hello World
</div>
</CardBox>
</SectionMain>
</>
);
};
ETGrowExport.getLayout = function getLayout(page: ReactElement) {
return <LayoutAuthenticated>{page}</LayoutAuthenticated>;
};
export default ETGrowExport;