diff --git a/.dev.env b/.dev.env
new file mode 100644
index 0000000..e84bf79
--- /dev/null
+++ b/.dev.env
@@ -0,0 +1,5 @@
+## 开发环境
+BACKEND_URL=https://kevisual.silkyai.cn
+#BACKEND_URL=https://localhost:4005
+
+## 生产环境
\ No newline at end of file
diff --git a/package.json b/package.json
index 4300a30..ef62e23 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "@kevisual/center",
"private": true,
- "version": "0.0.8",
+ "version": "0.0.9",
"type": "module",
"scripts": {
"dev": "vite",
@@ -10,39 +10,42 @@
"lint": "eslint .",
"preview": "vite preview",
"prepub": "envision switch root",
- "pub": "envision deploy ./dist -k center -v 0.0.8 -u -o root"
+ "pub": "envision deploy ./dist -k center -v 0.0.9 -u -o root"
},
"dependencies": {
"@ant-design/icons": "^5.6.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@icon-park/react": "^1.4.2",
+ "@kevisual/center-components": "workspace:*",
"@kevisual/codemirror": "^0.0.2",
"@kevisual/container": "1.0.0",
"@kevisual/query": "^0.0.8",
"@kevisual/system-ui": "^0.0.3",
"@kevisual/ui": "^0.0.2",
"@monaco-editor/react": "^4.7.0",
- "@mui/material": "^6.4.7",
- "@tailwindcss/vite": "^4.0.12",
+ "@mui/material": "^6.4.8",
+ "@tailwindcss/vite": "^4.0.14",
"@uiw/react-textarea-code-editor": "^3.1.0",
"@xyflow/react": "^12.4.4",
- "antd": "^5.24.3",
+ "antd": "^5.24.4",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"d3": "^7.9.0",
+ "dayjs": "^1.11.13",
"eventemitter3": "^5.0.1",
"immer": "^10.1.1",
"lodash-es": "^4.17.21",
"marked": "^15.0.7",
- "nanoid": "^5.1.3",
+ "nanoid": "^5.1.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-resizable-panels": "^2.1.7",
"react-router": "^7.3.0",
"react-router-dom": "^7.3.0",
"react-toastify": "^11.0.5",
+ "@kevisual/resources": "workspace:*",
"vite-plugin-tsconfig-paths": "^1.4.1",
"zustand": "^5.0.3"
},
@@ -54,8 +57,9 @@
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.13.10",
"@types/path-browserify": "^1.0.3",
- "@types/react": "^19.0.10",
+ "@types/react": "^19.0.11",
"@types/react-dom": "^19.0.4",
+ "@vitejs/plugin-basic-ssl": "^2.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
@@ -68,10 +72,10 @@
"pretty-bytes": "^6.1.1",
"react-is": "19.0.0",
"tailwind-merge": "^3.0.2",
- "tailwindcss": "^4.0.12",
+ "tailwindcss": "^4.0.14",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
- "vite": "^6.2.1"
+ "vite": "^6.2.2"
}
}
\ No newline at end of file
diff --git a/packages/components/package.json b/packages/components/package.json
index 3cf2660..5787025 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -21,8 +21,7 @@
},
"exports": {
".": "./src/index.tsx",
- "./theme": "./src/theme/index.tsx",
- "./button": "./src/button/index.tsx"
+ "./*": "./src/*"
},
"devDependencies": {
"clsx": "^2.1.1",
diff --git a/packages/components/src/button/index.tsx b/packages/components/src/button/index.tsx
index 7c24765..2c892c2 100644
--- a/packages/components/src/button/index.tsx
+++ b/packages/components/src/button/index.tsx
@@ -3,3 +3,12 @@ import MuiButton, { ButtonProps } from '@mui/material/Button';
export const Button = (props: ButtonProps) => {
return ;
};
+
+export const IconButton = (props: ButtonProps) => {
+ const { variant = 'contained', color = 'primary', sx, children, ...rest } = props;
+ return (
+
+ {children}
+
+ );
+};
diff --git a/packages/components/src/theme/index.tsx b/packages/components/src/theme/index.tsx
index 279e96b..50ff133 100644
--- a/packages/components/src/theme/index.tsx
+++ b/packages/components/src/theme/index.tsx
@@ -1,6 +1,7 @@
import { createTheme, Shadows, ThemeOptions } from '@mui/material/styles';
import { useTheme as useMuiTheme, Theme } from '@mui/material/styles';
import { amber, red } from '@mui/material/colors';
+import { ThemeProvider } from '@mui/material/styles';
const generateShadows = (color: string): Shadows => {
return [
'none',
@@ -139,6 +140,20 @@ export const themeOptions: ThemeOptions = {
*/
export const theme = createTheme(themeOptions);
+/**
+ *
+ * @returns
+ */
export const useTheme = () => {
return useMuiTheme();
};
+
+/**
+ * 自定义主题设置。
+ * @param param0
+ * @returns
+ */
+export const CustomThemeProvider = ({ children, themeOptions: customThemeOptions }: { children: React.ReactNode; themeOptions?: ThemeOptions }) => {
+ const theme = createTheme(customThemeOptions || themeOptions);
+ return {children};
+};
diff --git a/packages/components/src/theme/wind-theme.css b/packages/components/src/theme/wind-theme.css
new file mode 100644
index 0000000..06f04ef
--- /dev/null
+++ b/packages/components/src/theme/wind-theme.css
@@ -0,0 +1,6 @@
+@import 'tailwindcss';
+
+@theme {
+ --light-color-primary: oklch(0.72 0.11 178);
+ --light-color-secondary: oklch(0.72 0.11 178);
+}
diff --git a/packages/components/tsconfig.json b/packages/components/tsconfig.json
index aa72cb4..421486f 100644
--- a/packages/components/tsconfig.json
+++ b/packages/components/tsconfig.json
@@ -21,7 +21,11 @@
"node_modules/@types",
"node_modules/@kevisual/types",
],
- "paths": {},
+ "paths": {
+ "@kevisual/center-components/*": [
+ "src/*"
+ ]
+ },
/* Linting */
"strict": true,
"noImplicitAny": false,
diff --git a/packages/resources/package.json b/packages/resources/package.json
index 146146c..b9e6919 100644
--- a/packages/resources/package.json
+++ b/packages/resources/package.json
@@ -1,5 +1,5 @@
{
- "name": "resources",
+ "name": "@kevisual/resources",
"version": "0.0.1",
"description": "",
"main": "index.js",
@@ -42,5 +42,9 @@
},
"devDependencies": {
"@kevisual/types": "^0.0.6"
+ },
+ "exports": {
+ ".": "./src/index.tsx",
+ "./*": "./src/*"
}
}
\ No newline at end of file
diff --git a/packages/resources/src/main.ts b/packages/resources/src/main.ts
index 917d1dd..17d1c87 100644
--- a/packages/resources/src/main.ts
+++ b/packages/resources/src/main.ts
@@ -1,4 +1,4 @@
-import { bootstrap } from './pages/Bootstrap';
+import { render } from './pages/Bootstrap';
-bootstrap('#ai-root');
+render('#ai-root');
diff --git a/packages/resources/src/modules/query.ts b/packages/resources/src/modules/query.ts
index 5c3e436..6c8528c 100644
--- a/packages/resources/src/modules/query.ts
+++ b/packages/resources/src/modules/query.ts
@@ -1,4 +1,4 @@
-import { toastLogin } from '@/pages/message/ToastLogin';
+import { toastLogin } from '@kevisual/resources/pages/message/ToastLogin';
import { QueryClient } from '@kevisual/query';
export const query = new QueryClient();
diff --git a/packages/resources/src/pages/App.tsx b/packages/resources/src/pages/App.tsx
index 61e56c2..841f8ba 100644
--- a/packages/resources/src/pages/App.tsx
+++ b/packages/resources/src/pages/App.tsx
@@ -1,5 +1,5 @@
-import { useEffect } from 'react';
-import { theme } from '@kevisual/center-components/theme';
+import { useEffect, useMemo } from 'react';
+import { theme } from '@kevisual/center-components/theme/index.tsx';
import { ThemeProvider } from '@mui/material/styles';
import { Left } from './layout/Left';
import { Main } from './main/index';
@@ -74,7 +74,17 @@ export const InitProvider = ({ children }: { children: React.ReactNode }) => {
出现问题
加载设置时遇到错误。请重试。
-
@@ -82,15 +92,37 @@ export const InitProvider = ({ children }: { children: React.ReactNode }) => {
}
return <>{children}>;
};
-export const App = () => {
+
+type AppProvider = {
+ key: string;
+ use: boolean;
+};
+export type AppProps = {
+ providers?: AppProvider[];
+ noProvider?: boolean;
+ /**
+ * 是否是单个应用
+ * 默认是单个应用模块。
+ */
+ isSingleApp?: boolean;
+};
+export const App = ({ providers, noProvider, isSingleApp = true }: AppProps) => {
+ const children = useMemo(() => {
+ return (
+
+
+
+
+
+ );
+ }, []);
+ if (noProvider) {
+ return <>{children}>;
+ }
return (
-
-
-
-
-
+ {children}
diff --git a/packages/resources/src/pages/Bootstrap.tsx b/packages/resources/src/pages/Bootstrap.tsx
index b9f76ba..859cee8 100644
--- a/packages/resources/src/pages/Bootstrap.tsx
+++ b/packages/resources/src/pages/Bootstrap.tsx
@@ -1,5 +1,5 @@
import { createRoot } from 'react-dom/client';
-import { App } from './App';
+import { App, AppProps } from './App';
import React from 'react';
export class ReactRenderer {
@@ -40,13 +40,27 @@ export class ReactRenderer {
}
export default ReactRenderer;
-
-export const bootstrap = (el: HTMLElement | string) => {
+export const randomId = () => {
+ return Math.random().toString(36).substring(2, 15);
+};
+export const render = (el: HTMLElement | string, props?: AppProps) => {
// createRoot(document.getElementById('ai-root')!).render();
const root = typeof el === 'string' ? document.querySelector(el) : el;
- if (root) {
+ if (!root) {
+ console.error('root not found');
+ return;
+ }
+ const hasResourceApp = window.context?.resourcesApp;
+ if (hasResourceApp) {
+ const render = hasResourceApp as ReactRenderer;
+ render.updateProps({
+ props: { t: randomId(), ...props },
+ });
+ root.innerHTML = '';
+ root.appendChild(render.element);
+ } else {
const renderer = new ReactRenderer(App, {
- props: {},
+ props: { ...props },
className: 'resources-root w-full h-full',
});
if (window.context) {
@@ -59,3 +73,17 @@ export const bootstrap = (el: HTMLElement | string) => {
root.appendChild(renderer.element);
}
};
+
+export const unmount = (el: HTMLElement | string) => {
+ const root = typeof el === 'string' ? document.querySelector(el) : el;
+ if (!root) {
+ console.error('root not found');
+ return;
+ }
+ const hasResourceApp = window.context?.resourcesApp;
+ if (hasResourceApp) {
+ const render = hasResourceApp as ReactRenderer;
+ render.destroy();
+ window.context.resourcesApp = null;
+ }
+};
diff --git a/packages/resources/src/pages/file/draw/FileDrawer.tsx b/packages/resources/src/pages/file/draw/FileDrawer.tsx
index 29e72f6..8c254a4 100644
--- a/packages/resources/src/pages/file/draw/FileDrawer.tsx
+++ b/packages/resources/src/pages/file/draw/FileDrawer.tsx
@@ -1,5 +1,5 @@
-import { useResourceStore } from '@/pages/store/resource';
-import { useResourceFileStore } from '@/pages/store/resource-file';
+import { useResourceStore } from '@kevisual/resources/pages/store/resource';
+import { useResourceFileStore } from '@kevisual/resources/pages/store/resource-file';
import { Box, Divider, Drawer, Tab, Tabs } from '@mui/material';
import { useMemo, useState } from 'react';
import { QuickValues, QuickTabs } from './QuickTabs';
diff --git a/packages/resources/src/pages/file/draw/modules/ContextForm.tsx b/packages/resources/src/pages/file/draw/modules/ContextForm.tsx
index 3209b9e..dc2f6e3 100644
--- a/packages/resources/src/pages/file/draw/modules/ContextForm.tsx
+++ b/packages/resources/src/pages/file/draw/modules/ContextForm.tsx
@@ -1,4 +1,4 @@
-import { useResourceFileStore } from '@/pages/store/resource-file';
+import { useResourceFileStore } from '@kevisual/resources/pages/store/resource-file';
import { Box, Typography } from '@mui/material';
import prettyBytes from 'pretty-bytes';
import dayjs from 'dayjs';
diff --git a/packages/resources/src/pages/file/draw/modules/MetaForm.tsx b/packages/resources/src/pages/file/draw/modules/MetaForm.tsx
index 7505dbf..9fb8b3d 100644
--- a/packages/resources/src/pages/file/draw/modules/MetaForm.tsx
+++ b/packages/resources/src/pages/file/draw/modules/MetaForm.tsx
@@ -1,4 +1,4 @@
-import { useResourceFileStore } from '@/pages/store/resource-file';
+import { useResourceFileStore } from '@kevisual/resources/pages/store/resource-file';
import { FormControlLabel, Box, TextField, Button, IconButton, ButtonGroup, Tooltip, Select, MenuItem, Typography, FormGroup } from '@mui/material';
import { Info, Plus, Save, Share, Shuffle, Trash } from 'lucide-react';
import { useState, useEffect, useMemo } from 'react';
diff --git a/packages/resources/src/pages/file/draw/quick/QuickPreview.tsx b/packages/resources/src/pages/file/draw/quick/QuickPreview.tsx
index ce88845..cf097c8 100644
--- a/packages/resources/src/pages/file/draw/quick/QuickPreview.tsx
+++ b/packages/resources/src/pages/file/draw/quick/QuickPreview.tsx
@@ -1,5 +1,5 @@
-import { useResourceFileStore } from '@/pages/store/resource-file';
-import { useSettingsStore } from '@/pages/store/settings';
+import { useResourceFileStore } from '@kevisual/resources/pages/store/resource-file';
+import { useSettingsStore } from '@kevisual/resources/pages/store/settings';
import { Button, Tooltip, useTheme } from '@mui/material';
import { useShallow } from 'zustand/shallow';
import { Accordion, AccordionSummary, AccordionDetails } from '@mui/material';
diff --git a/packages/resources/src/pages/file/draw/quick/index.tsx b/packages/resources/src/pages/file/draw/quick/index.tsx
index b8445a6..97ff1d9 100644
--- a/packages/resources/src/pages/file/draw/quick/index.tsx
+++ b/packages/resources/src/pages/file/draw/quick/index.tsx
@@ -1,4 +1,4 @@
-import { useResourceFileStore } from '@/pages/store/resource-file';
+import { useResourceFileStore } from '@kevisual/resources/pages/store/resource-file';
import { useShallow } from 'zustand/shallow';
import { QuickPreview } from './QuickPreview';
import { useMemo } from 'react';
diff --git a/packages/resources/src/pages/file/list/FileCard.tsx b/packages/resources/src/pages/file/list/FileCard.tsx
index e2029f5..703121d 100644
--- a/packages/resources/src/pages/file/list/FileCard.tsx
+++ b/packages/resources/src/pages/file/list/FileCard.tsx
@@ -1,9 +1,9 @@
-import { useResourceStore } from '@/pages/store/resource';
+import { useResourceStore } from '@kevisual/resources/pages/store/resource';
import { Card, CardContent, Typography } from '@mui/material';
import { getIcon } from '../FileIcon';
import { amber } from '@mui/material/colors';
import clsx from 'clsx';
-import { useResourceFileStore } from '@/pages/store/resource-file';
+import { useResourceFileStore } from '@kevisual/resources/pages/store/resource-file';
export const FileCard = () => {
const { list, prefix, onOpenPrefix } = useResourceStore();
const { setPrefix, setOpenDrawer } = useResourceFileStore();
diff --git a/packages/resources/src/pages/file/list/FileTable.tsx b/packages/resources/src/pages/file/list/FileTable.tsx
index dcf494c..183ae18 100644
--- a/packages/resources/src/pages/file/list/FileTable.tsx
+++ b/packages/resources/src/pages/file/list/FileTable.tsx
@@ -1,11 +1,11 @@
-import { useResourceStore } from '@/pages/store/resource';
+import { useResourceStore } from '@kevisual/resources/pages/store/resource';
import { Button, Paper, Table, TableBody, TableCell, TableContainer, TableHead, TableRow } from '@mui/material';
import prettyBytes from 'pretty-bytes';
import dayjs from 'dayjs';
import { getIcon } from '../FileIcon';
import { Download, Trash } from 'lucide-react';
import clsx from 'clsx';
-import { useResourceFileStore } from '@/pages/store/resource-file';
+import { useResourceFileStore } from '@kevisual/resources/pages/store/resource-file';
export const FileTable = () => {
const { list, prefix, download, onOpenPrefix, deleteFile } = useResourceStore();
diff --git a/packages/resources/src/pages/file/modules/PrefixRedirect.tsx b/packages/resources/src/pages/file/modules/PrefixRedirect.tsx
index 11b4517..7c8ef08 100644
--- a/packages/resources/src/pages/file/modules/PrefixRedirect.tsx
+++ b/packages/resources/src/pages/file/modules/PrefixRedirect.tsx
@@ -1,4 +1,4 @@
-import { useResourceStore } from '@/pages/store/resource';
+import { useResourceStore } from '@kevisual/resources/pages/store/resource';
import { Breadcrumbs, Typography } from '@mui/material';
import clsx from 'clsx';
import { useMemo } from 'react';
diff --git a/packages/resources/src/pages/main.tsx b/packages/resources/src/pages/main.tsx
index c5270c7..f5831dc 100644
--- a/packages/resources/src/pages/main.tsx
+++ b/packages/resources/src/pages/main.tsx
@@ -1,3 +1,3 @@
-import { bootstrap } from './Bootstrap';
+import { render } from './Bootstrap';
-bootstrap('#ai-root');
+render('#ai-root');
diff --git a/packages/resources/src/pages/settings/index.tsx b/packages/resources/src/pages/settings/index.tsx
index 7386c92..4065574 100644
--- a/packages/resources/src/pages/settings/index.tsx
+++ b/packages/resources/src/pages/settings/index.tsx
@@ -1,4 +1,4 @@
-import { useSettingsStore, Settings as SettingsType } from '@/pages/store/settings';
+import { useSettingsStore, Settings as SettingsType } from '@kevisual/resources/pages/store/settings';
import { Box, Typography, TextField, useTheme, Button } from '@mui/material';
import { useEffect, useState } from 'react';
import { Settings as SettingsIcon } from 'lucide-react';
diff --git a/packages/resources/src/pages/store/resource-file.ts b/packages/resources/src/pages/store/resource-file.ts
index 346ce8a..91972fb 100644
--- a/packages/resources/src/pages/store/resource-file.ts
+++ b/packages/resources/src/pages/store/resource-file.ts
@@ -1,6 +1,6 @@
import { create } from 'zustand';
import { Resource } from './resource';
-import { query } from '@/modules/query';
+import { query } from '@kevisual/resources/modules/query';
import { toast } from 'react-toastify';
interface ResourceFileStore {
diff --git a/packages/resources/src/pages/store/resource.ts b/packages/resources/src/pages/store/resource.ts
index 1b4eb34..82edba0 100644
--- a/packages/resources/src/pages/store/resource.ts
+++ b/packages/resources/src/pages/store/resource.ts
@@ -1,5 +1,5 @@
import { create } from 'zustand';
-import { query } from '@/modules/query';
+import { query } from '@kevisual/resources/modules/query';
import { sortBy } from 'lodash-es';
import { toast } from 'react-toastify';
import { useSettingsStore } from './settings';
diff --git a/packages/resources/src/pages/store/settings.ts b/packages/resources/src/pages/store/settings.ts
index 9a3d9d3..c7b2eec 100644
--- a/packages/resources/src/pages/store/settings.ts
+++ b/packages/resources/src/pages/store/settings.ts
@@ -1,5 +1,5 @@
import { create } from 'zustand';
-import { query } from '@/modules/query';
+import { query } from '@kevisual/resources/modules/query';
import { toast } from 'react-toastify';
export type Settings = {
diff --git a/packages/resources/src/pages/store/statistic.ts b/packages/resources/src/pages/store/statistic.ts
index 819234d..7d36e4a 100644
--- a/packages/resources/src/pages/store/statistic.ts
+++ b/packages/resources/src/pages/store/statistic.ts
@@ -1,5 +1,5 @@
import { create } from 'zustand';
-import { query } from '@/modules/query';
+import { query } from '@kevisual/resources/modules/query';
type Statistic = {
list: any[];
diff --git a/packages/resources/src/pages/upload/utils/upload-chunk.ts b/packages/resources/src/pages/upload/utils/upload-chunk.ts
index 78da689..dac7529 100644
--- a/packages/resources/src/pages/upload/utils/upload-chunk.ts
+++ b/packages/resources/src/pages/upload/utils/upload-chunk.ts
@@ -2,7 +2,7 @@ import NProgress from 'nprogress';
import 'nprogress/nprogress.css';
import { toast } from 'react-toastify';
import { nanoid } from 'nanoid';
-import { toastLogin } from '@/pages/message/ToastLogin';
+import { toastLogin } from '@kevisual/resources/pages/message/ToastLogin';
type ConvertOpts = {
appKey?: string;
diff --git a/packages/resources/src/pages/upload/utils/upload.ts b/packages/resources/src/pages/upload/utils/upload.ts
index 6a18638..ad6b2a8 100644
--- a/packages/resources/src/pages/upload/utils/upload.ts
+++ b/packages/resources/src/pages/upload/utils/upload.ts
@@ -2,7 +2,7 @@ import NProgress from 'nprogress';
import 'nprogress/nprogress.css';
import { toast } from 'react-toastify';
import { nanoid } from 'nanoid';
-import { toastLogin } from '@/pages/message/ToastLogin';
+import { toastLogin } from '@kevisual/resources/pages/message/ToastLogin';
type ConvertOpts = {
appKey?: string;
diff --git a/packages/resources/tsconfig.json b/packages/resources/tsconfig.json
index e15609b..6c7008f 100644
--- a/packages/resources/tsconfig.json
+++ b/packages/resources/tsconfig.json
@@ -22,7 +22,7 @@
"node_modules/@kevisual/types",
],
"paths": {
- "@/*": [
+ "@kevisual/resources/*": [
"src/*"
]
},
diff --git a/packages/resources/vite.config.mjs b/packages/resources/vite.config.mjs
index a74ea76..8ca72b1 100644
--- a/packages/resources/vite.config.mjs
+++ b/packages/resources/vite.config.mjs
@@ -42,7 +42,7 @@ export default defineConfig({
},
resolve: {
alias: {
- '@': path.resolve(__dirname, './src'),
+ '@kevisual/resources': path.resolve(__dirname, './src'),
// 'react/jsx-dev-runtime': 'https://cdn.jsdelivr.net/npm/react/jsx-dev-runtime/+esm',
// 'react/jsx-runtime': 'https://cdn.jsdelivr.net/npm/react/jsx-runtime/+esm',
// 'react/jsx-runtime': path.resolve(__dirname, './node_modules/react/jsx-runtime'),
diff --git a/packages/webshell/.gitignore b/packages/webshell/.gitignore
new file mode 100644
index 0000000..e440e68
--- /dev/null
+++ b/packages/webshell/.gitignore
@@ -0,0 +1,27 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
+
+tsconfig.app.tsbuildinfo
+tsconfig.node.tsbuildinfo
\ No newline at end of file
diff --git a/packages/webshell/index.html b/packages/webshell/index.html
new file mode 100644
index 0000000..f0a0768
--- /dev/null
+++ b/packages/webshell/index.html
@@ -0,0 +1,33 @@
+
+
+
+
+AI Apps
+
+
+
+
+
+
+
+
+
+
+
+
+