diff --git a/packages/lib/hooks/useUrlMatchesCurrentUrl.ts b/packages/lib/hooks/useUrlMatchesCurrentUrl.ts
index 5526f2fbe2..7fc0c5fe2c 100644
--- a/packages/lib/hooks/useUrlMatchesCurrentUrl.ts
+++ b/packages/lib/hooks/useUrlMatchesCurrentUrl.ts
@@ -7,7 +7,7 @@ export const useUrlMatchesCurrentUrl = (url: string) => {
// It can certainly have null value https://nextjs.org/docs/app/api-reference/functions/use-pathname#:~:text=usePathname%20can%20return%20null%20when%20a%20fallback%20route%20is%20being%20rendered%20or%20when%20a%20pages%20directory%20page%20has%20been%20automatically%20statically%20optimized%20by%20Next.js%20and%20the%20router%20is%20not%20ready.
const pathname = usePathname() as null | string;
const searchParams = useSearchParams();
- const query = searchParams.toString();
+ const query = searchParams?.toString();
let pathnameWithQuery;
if (query) {
pathnameWithQuery = `${pathname}?${query}`;
diff --git a/packages/ui/components/navigation/tabs/__stories__/horizontalTabs.stories.mdx b/packages/ui/components/navigation/tabs/__stories__/horizontalTabs.stories.mdx
new file mode 100644
index 0000000000..701cd54c8e
--- /dev/null
+++ b/packages/ui/components/navigation/tabs/__stories__/horizontalTabs.stories.mdx
@@ -0,0 +1,134 @@
+import { Canvas, Meta, Story } from "@storybook/addon-docs/blocks";
+
+import {
+ Title,
+ VariantRow,
+ VariantsTable,
+ CustomArgsTable,
+ Examples,
+ Example,
+} from "@calcom/storybook/components";
+import { Plus } from "@calcom/ui/components/icon";
+
+import HorizontalTabs from "../HorizontalTabs";
+
+
+
+
+
+## Definition
+
+The HorizontalTabs component is a user interface element used for displaying a horizontal set of tabs, often employed for navigation or organization purposes within a web application.
+
+## Structure
+
+The HorizontalTabs component is designed to work alongside the HorizontalTabItem component, which represents individual tabs within the tab bar.
+
+export const tabs = [
+ {
+ name: "Tab 1",
+ href: "?path=/story/ui-navigation-horizontaltabs--horizontal-tabs/tab1",
+ disabled: false,
+ linkShallow: true,
+ linkScroll: true,
+ icon: Plus,
+ },
+ {
+ name: "Tab 2",
+ href: "?path=/story/ui-navigation-horizontaltabs--horizontal-tabs/tab2",
+ disabled: false,
+ linkShallow: true,
+ linkScroll: true,
+ avatar: "Avatar",
+ },
+ {
+ name: "Tab 3",
+ href: "?path=/story/ui-navigation-horizontaltabs--horizontal-tabs/tab3",
+ disabled: true,
+ linkShallow: true,
+ linkScroll: true,
+ },
+];
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## HorizontalTabs Story
+
+
diff --git a/packages/ui/components/navigation/tabs/__stories__/verticalTabs.stories.mdx b/packages/ui/components/navigation/tabs/__stories__/verticalTabs.stories.mdx
new file mode 100644
index 0000000000..6b7b3ea2c6
--- /dev/null
+++ b/packages/ui/components/navigation/tabs/__stories__/verticalTabs.stories.mdx
@@ -0,0 +1,158 @@
+import { Meta, Story } from "@storybook/addon-docs/blocks";
+
+import {
+ Title,
+ CustomArgsTable,
+ Examples,
+ Example,
+ VariantsTable,
+ VariantsRow,
+} from "@calcom/storybook/components";
+import { Plus } from "@calcom/ui/components/icon";
+
+import VerticalTabs from "../VerticalTabs";
+
+
+
+
+
+## Definition
+
+The VerticalTabs component is a user interface element utilized to present a vertical set of tabs, commonly employed for navigation or organizing content within a web application.
+
+## Structure
+
+The VerticalTabs component is designed to complement the HorizontalTabItem component, which represents individual tabs within the tab bar. This combination allows for creating intuitive navigation experiences and organized content presentation.
+
+export const tabs = [
+ {
+ name: "Tab 1",
+ href: "/tab1",
+ disabled: false,
+ linkShallow: true,
+ linkScroll: true,
+ disableChevron: true,
+ icon: Plus,
+ },
+ {
+ name: "Tab 2",
+ href: "/tab2",
+ disabled: false,
+ linkShallow: true,
+ linkScroll: true,
+ avatar: "Avatar",
+ },
+ {
+ name: "Tab 3",
+ href: "/tab3",
+ disabled: true,
+ linkShallow: true,
+ linkScroll: true,
+ },
+];
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## VerticalTabs Story
+
+