This commit is contained in:
Flatlogic Bot 2025-06-13 10:15:28 +00:00
parent 4fc8eeb2e9
commit 440edbc457
5 changed files with 37 additions and 4 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

@ -93,6 +93,14 @@ const menuAside: MenuAsideItem[] = [
icon: icon.mdiAccountCircle, icon: icon.mdiAccountCircle,
}, },
{
href: '/chat-gpt',
label: 'Chat GPT',
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
icon: icon.mdiChat ?? icon.mdiTable,
},
{ {
href: '/home', href: '/home',
label: 'Home page', label: 'Home page',

View File

@ -0,0 +1,20 @@
import { ReactElement } from 'react';
import LayoutAuthenticated from '../layouts/Authenticated';
import SectionMain from '../components/SectionMain';
import SectionTitle from '../components/SectionTitle';
import CardBox from '../components/CardBox';
const ChatGptPage = () => (
<SectionMain>
<SectionTitle title="Chat GPT" />
<CardBox>
{/* Content goes here */}
</CardBox>
</SectionMain>
);
ChatGptPage.getLayout = function getLayout(page: ReactElement) {
return <LayoutAuthenticated>{page}</LayoutAuthenticated>;
};
export default ChatGptPage;