feat(frontend): implement roadmap features - services link and boost job action
This commit is contained in:
parent
e6131dfe33
commit
a79743df33
2 changed files with 16 additions and 0 deletions
|
|
@ -36,6 +36,7 @@ import {
|
|||
ExternalLink,
|
||||
Pause,
|
||||
Play,
|
||||
Zap,
|
||||
} from "lucide-react"
|
||||
import Link from "next/link"
|
||||
import {
|
||||
|
|
@ -299,7 +300,15 @@ export default function MyJobsPage() {
|
|||
<ExternalLink className="h-4 w-4 mr-2" />
|
||||
Preview
|
||||
</DropdownMenuItem>
|
||||
|
||||
{/* Boost Feature (Roadmap) */}
|
||||
<DropdownMenuSeparator />
|
||||
<DropdownMenuItem className="text-amber-600 font-medium cursor-pointer">
|
||||
<Zap className="h-4 w-4 mr-2" />
|
||||
Boost Job
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuSeparator />
|
||||
|
||||
{job.status === "active" ? (
|
||||
<DropdownMenuItem>
|
||||
<Pause className="h-4 w-4 mr-2" />
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ import {
|
|||
Building2,
|
||||
BarChart3,
|
||||
Plus,
|
||||
Zap,
|
||||
} from "lucide-react";
|
||||
import Link from "next/link";
|
||||
import { usePathname } from "next/navigation";
|
||||
|
|
@ -67,6 +68,12 @@ export function CompanySidebar({ className }: CompanySidebarProps) {
|
|||
href: "/dashboard/company/settings",
|
||||
active: pathname?.startsWith("/dashboard/company/settings"),
|
||||
},
|
||||
{
|
||||
label: "Services (Gigs)",
|
||||
icon: Zap,
|
||||
href: "/dashboard/company/services",
|
||||
active: pathname?.startsWith("/dashboard/company/services"),
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in a new issue