diff --git a/maxun-core/package.json b/maxun-core/package.json
index cce98975..e83f3b88 100644
--- a/maxun-core/package.json
+++ b/maxun-core/package.json
@@ -1,6 +1,6 @@
{
"name": "maxun-core",
- "version": "0.0.29",
+ "version": "0.0.30",
"description": "Core package for Maxun, responsible for data extraction",
"main": "build/index.js",
"typings": "build/index.d.ts",
@@ -36,4 +36,4 @@
"playwright-core": "1.57.0",
"turndown": "^7.2.2"
}
-}
\ No newline at end of file
+}
diff --git a/package.json b/package.json
index f6611a3b..bb2cbff6 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "maxun",
- "version": "0.0.31",
+ "version": "0.0.32",
"author": "Maxun",
"license": "AGPL-3.0-or-later",
"dependencies": {
@@ -54,7 +54,7 @@
"lodash": "^4.17.21",
"loglevel": "^1.8.0",
"loglevel-plugin-remote": "^0.6.8",
- "maxun-core": "^0.0.29",
+ "maxun-core": "^0.0.30",
"minio": "^8.0.1",
"moment-timezone": "^0.5.45",
"node-cron": "^3.0.3",
diff --git a/public/svg/langchain.svg b/public/svg/langchain.svg
new file mode 100644
index 00000000..88da8ae3
--- /dev/null
+++ b/public/svg/langchain.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/public/svg/llamaindex.svg b/public/svg/llamaindex.svg
new file mode 100644
index 00000000..fdcc834c
--- /dev/null
+++ b/public/svg/llamaindex.svg
@@ -0,0 +1,18 @@
+
+
diff --git a/public/svg/mastra.svg b/public/svg/mastra.svg
new file mode 100644
index 00000000..6ac4a131
--- /dev/null
+++ b/public/svg/mastra.svg
@@ -0,0 +1,22 @@
+
+
+
diff --git a/public/svg/openai.svg b/public/svg/openai.svg
new file mode 100644
index 00000000..3b4eff96
--- /dev/null
+++ b/public/svg/openai.svg
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/public/svg/vercel.svg b/public/svg/vercel.svg
new file mode 100644
index 00000000..aa5350e1
--- /dev/null
+++ b/public/svg/vercel.svg
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/src/components/dashboard/NavBar.tsx b/src/components/dashboard/NavBar.tsx
index 41a315b1..a1ad8c2c 100644
--- a/src/components/dashboard/NavBar.tsx
+++ b/src/components/dashboard/NavBar.tsx
@@ -11,10 +11,6 @@ import {
Typography,
Chip,
Button,
- Modal,
- Tabs,
- Tab,
- Box,
Snackbar,
Tooltip
} from "@mui/material";
@@ -25,7 +21,6 @@ import {
YouTube,
X,
GitHub,
- Update,
Close,
LightMode,
DarkMode,
@@ -62,9 +57,7 @@ export const NavBar: React.FC = ({
const currentVersion = packageJson.version;
- const [open, setOpen] = useState(false);
const [latestVersion, setLatestVersion] = useState(null);
- const [tab, setTab] = useState(0);
const [isUpdateAvailable, setIsUpdateAvailable] = useState(false);
const fetchLatestVersion = async (): Promise => {
@@ -79,20 +72,6 @@ export const NavBar: React.FC = ({
}
};
- const handleUpdateOpen = () => {
- setOpen(true);
- fetchLatestVersion();
- };
-
- const handleUpdateClose = () => {
- setOpen(false);
- setTab(0); // Reset tab to the first tab
- };
-
- const handleUpdateTabChange = (event: React.SyntheticEvent, newValue: number) => {
- setTab(newValue);
- };
-
const handleMenuOpen = (event: React.MouseEvent) => {
setAnchorEl(event.currentTarget);
};
@@ -197,7 +176,7 @@ export const NavBar: React.FC = ({