Skip to content

Commit

Permalink
feat(deployment): add help sidebar link
Browse files Browse the repository at this point in the history
  • Loading branch information
baktun14 authored Feb 5, 2025
1 parent e6c7215 commit 54c501c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion apps/deploy-web/src/components/layout/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Drawer from "@mui/material/Drawer";
import { useTheme as useMuiTheme } from "@mui/material/styles";
import useMediaQuery from "@mui/material/useMediaQuery";
import type { ClassValue } from "clsx";
import { Discord, Github, Menu, MenuScale, Rocket, X as TwitterX, Youtube } from "iconoir-react";
import { Discord, Github, HeadsetHelp, Menu, MenuScale, Rocket, X as TwitterX, Youtube } from "iconoir-react";
import { Cloud, HelpCircle, Home, MultiplePages, OpenInWindow, Server, Settings, Tools } from "iconoir-react";
import { useAtom } from "jotai";
import getConfig from "next/config";
Expand Down Expand Up @@ -111,6 +111,13 @@ export const Sidebar: React.FunctionComponent<Props> = ({ isMobileOpen, handleDr
{
hasDivider: false,
routes: [
{
title: "Deploy with an Expert",
icon: props => <HeadsetHelp {...props} />,
url: "https://share.hsforms.com/1gQOaeJXgQ-GMc7MnsTOmsAsaima",
activeRoutes: [],
target: "_blank"
},
{
title: "Akash Network",
icon: props => <Image src="/images/akash-logo.svg" alt="Akash Logo" quality={100} width={20} height={20} {...props} />,
Expand Down

0 comments on commit 54c501c

Please sign in to comment.