Skip to content

Commit

Permalink
Prepare docs page and update user menu
Browse files Browse the repository at this point in the history
  • Loading branch information
pheralb committed Mar 21, 2024
1 parent 95d8f9b commit 9069761
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/app/docs/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Page = () => {
return (
<div>Page</div>
)
}

export default Page
7 changes: 7 additions & 0 deletions src/components/auth/user-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { DropdownMenuItem } from "@/ui/dropdown-menu";
import {
ArrowUpRight,
BugIcon,
HomeIcon,
LayoutDashboardIcon,
SettingsIcon,
} from "lucide-react";
Expand All @@ -15,6 +16,12 @@ const UserMenu = () => {

return (
<>
<DropdownMenuItem asChild>
<Link href="/">
<HomeIcon size={iconSize} />
<span>Home</span>
</Link>
</DropdownMenuItem>
<DropdownMenuItem asChild>
<Link href="/dashboard">
<LayoutDashboardIcon size={iconSize} />
Expand Down

0 comments on commit 9069761

Please sign in to comment.