Remove support page

This commit is contained in:
Mathias Wagner
2024-07-22 22:32:53 +02:00
parent 6b23b81d22
commit 9991ccbced

View File

@ -1,7 +1,7 @@
import Home from "@/states/Dashboard/pages/Home"; import Home from "@/states/Dashboard/pages/Home";
import { import {
AdminPanelSettings, AdminPanelSettings,
BarChart, ContactSupport, BarChart,
Group, Group,
Info as InfoIcon, Info as InfoIcon,
Key, Key,
@ -20,7 +20,6 @@ import Members from "@/states/Dashboard/pages/Members";
export const routes = [ export const routes = [
{path: "/", element: <Home/>}, {path: "/", element: <Home/>},
{path: "/support", element: <h1>Support</h1>},
{path: "/projects/:projectId/stats", element: <Statistic />}, {path: "/projects/:projectId/stats", element: <Statistic />},
{path: "/projects/:projectId/licenses", element: <Licenses />}, {path: "/projects/:projectId/licenses", element: <Licenses />},
{path: "/projects/:projectId/permissions", element: <Permissions />}, {path: "/projects/:projectId/permissions", element: <Permissions />},
@ -35,12 +34,7 @@ export const sidebar = [
{ {
path: "/", path: "/",
icon: <HomeIcon />, icon: <HomeIcon />,
name: "Start" name: "Home"
},
{
path: "/support",
icon: <ContactSupport />,
name: "Support"
} }
] ]