Expose profiles navigation links
cgen-61bb95de8b1641c68a2ad97de5487082
This commit is contained in:
parent
6e4068de16
commit
0954df0301
1 changed files with 10 additions and 0 deletions
|
|
@ -28,6 +28,7 @@ export default function Layout({ children }: LayoutProps) {
|
||||||
const navigation = [
|
const navigation = [
|
||||||
{ name: "Home", href: "/" },
|
{ name: "Home", href: "/" },
|
||||||
{ name: "Get Started", href: "/onboarding" },
|
{ name: "Get Started", href: "/onboarding" },
|
||||||
|
{ name: "Profiles", href: "/profiles" },
|
||||||
{ name: "About", href: "/about" },
|
{ name: "About", href: "/about" },
|
||||||
{ name: "Contact", href: "/contact" },
|
{ name: "Contact", href: "/contact" },
|
||||||
];
|
];
|
||||||
|
|
@ -35,6 +36,7 @@ export default function Layout({ children }: LayoutProps) {
|
||||||
const userNavigation = [
|
const userNavigation = [
|
||||||
{ name: "Dashboard", href: "/dashboard" },
|
{ name: "Dashboard", href: "/dashboard" },
|
||||||
{ name: "Feed", href: "/feed" },
|
{ name: "Feed", href: "/feed" },
|
||||||
|
{ name: "Profiles", href: "/profiles" },
|
||||||
{ name: "Home", href: "/" },
|
{ name: "Home", href: "/" },
|
||||||
{ name: "About", href: "/about" },
|
{ name: "About", href: "/about" },
|
||||||
{ name: "Contact", href: "/contact" },
|
{ name: "Contact", href: "/contact" },
|
||||||
|
|
@ -171,6 +173,14 @@ export default function Layout({ children }: LayoutProps) {
|
||||||
Dashboard
|
Dashboard
|
||||||
</Link>
|
</Link>
|
||||||
</DropdownMenuItem>
|
</DropdownMenuItem>
|
||||||
|
<DropdownMenuItem asChild>
|
||||||
|
<Link to="/profiles/me" className="cursor-pointer">
|
||||||
|
<Badge className="mr-2 h-5 w-5 rounded-full bg-aethex-500/20 text-aethex-200">
|
||||||
|
<Sparkles className="h-3 w-3" />
|
||||||
|
</Badge>
|
||||||
|
My Passport
|
||||||
|
</Link>
|
||||||
|
</DropdownMenuItem>
|
||||||
<DropdownMenuItem asChild>
|
<DropdownMenuItem asChild>
|
||||||
<Link to="/dashboard" className="cursor-pointer">
|
<Link to="/dashboard" className="cursor-pointer">
|
||||||
<Settings className="mr-2 h-4 w-4" />
|
<Settings className="mr-2 h-4 w-4" />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue