Vikrant Gupta 00d74bfebb
feat: add integrations to the side-nav for cloud users (#4756)
* feat: add integrations to the side-nav for cloud users

* feat: change the route from integrations/installed to /integrations

* feat: light mode table color

* feat: increase the width of the integrations panel by 25 percent

* feat: added telemetry constants and page view

* feat: added telemetry events for integrations

* feat: address review comments
2024-04-01 12:40:15 +05:30

16 lines
406 B
TypeScript

import { TabRoutes } from 'components/RouteTab/types';
import ROUTES from 'constants/routes';
import { Compass } from 'lucide-react';
import Integrations from 'pages/Integrations';
export const installedIntegrations: TabRoutes = {
Component: Integrations,
name: (
<div className="tab-item">
<Compass size={16} /> Integrations
</div>
),
route: ROUTES.INTEGRATIONS,
key: ROUTES.INTEGRATIONS,
};