web: added the base for the web project
This commit is contained in:
13
apps/web/src/components/navbar/NavbarMenu.tsx
Normal file
13
apps/web/src/components/navbar/NavbarMenu.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { useOrganizationParams } from "@/hooks/useOrganizationParams";
|
||||
import Link from "next/link";
|
||||
import { NavbarCreate } from "./NavbarCreate";
|
||||
|
||||
export function NavbarMenu() {
|
||||
const params = useOrganizationParams()
|
||||
return (
|
||||
<div className="flex gap-6 items-center">
|
||||
<Link href={`/${params.organization}`}>Home</Link>
|
||||
<NavbarCreate />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user