mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-24 06:28:49 -05:00
78f7b4d03e
* Duplicate Questions, Add Survey Name to Summary, Update Login Screen --------- Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
import { cn } from "@formbricks/lib/cn";
|
|
import SurveyNavBarName from "@/components/shared/SurveyNavBarName";
|
|
import Link from "next/link";
|
|
|
|
interface SecondNavbarProps {
|
|
tabs: { id: string; label: string; href: string; icon?: React.ReactNode }[];
|
|
activeId: string;
|
|
surveyId?: string;
|
|
environmentId?: string;
|
|
}
|
|
|
|
export default function SecondNavbar({
|
|
tabs,
|
|
activeId,
|
|
surveyId,
|
|
environmentId,
|
|
...props
|
|
}: SecondNavbarProps) {
|
|
return (
|
|
<div {...props}>
|
|
<div className="grid h-14 w-full grid-cols-3 items-center justify-items-stretch border-b bg-white px-4">
|
|
<div className="justify-self-start">
|
|
{surveyId && environmentId && (
|
|
<SurveyNavBarName surveyId={surveyId} environmentId={environmentId} />
|
|
)}
|
|
</div>{" "}
|
|
<nav className="flex h-full items-center space-x-4 justify-self-center" aria-label="Tabs">
|
|
{tabs.map((tab) => (
|
|
<Link
|
|
key={tab.id}
|
|
href={tab.href}
|
|
className={cn(
|
|
tab.id === activeId
|
|
? " border-brand-dark border-b-2 font-semibold text-slate-900"
|
|
: "text-slate-500 hover:text-slate-700",
|
|
"flex h-full items-center px-3 text-sm font-medium"
|
|
)}
|
|
aria-current={tab.id === activeId ? "page" : undefined}>
|
|
{tab.icon && <div className="mr-2 h-5 w-5">{tab.icon}</div>}
|
|
{tab.label}
|
|
</Link>
|
|
))}
|
|
</nav>
|
|
<div className="justify-self-end"></div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|