summaryrefslogtreecommitdiff
path: root/src/components/layouts/AppBar.js
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-01-26 17:02:02 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-01-26 17:02:02 +0700
commit902e5dabbb1ab0612764983c094af398e5f636ee (patch)
treeb1b33fed082204be057c50053aee15eede6cce25 /src/components/layouts/AppBar.js
parente340f5c4f4c47cde90e7676fcf71b55ef50e7c23 (diff)
Invoice and invoice detail
Diffstat (limited to 'src/components/layouts/AppBar.js')
-rw-r--r--src/components/layouts/AppBar.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/layouts/AppBar.js b/src/components/layouts/AppBar.js
index f9dddf9d..b4c7703c 100644
--- a/src/components/layouts/AppBar.js
+++ b/src/components/layouts/AppBar.js
@@ -1,4 +1,4 @@
-import { ChevronLeftIcon, HeartIcon, HomeIcon } from "@heroicons/react/24/outline";
+import { Bars3Icon, ChevronLeftIcon, HeartIcon, HomeIcon } from "@heroicons/react/24/outline";
import Head from "next/head";
import { useRouter } from "next/router";
import { useEffect, useState } from "react";
@@ -49,6 +49,9 @@ const AppBar = ({ title }) => {
<Link href="/">
<HomeIcon className="w-6 stroke-2 text-gray_r-12"/>
</Link>
+ <Link href="/my/menu">
+ <Bars3Icon className="w-6 stroke-2 text-gray_r-12"/>
+ </Link>
</div>
{/* --- End Icons */}
</div>