diff --git a/frontend/src/components/dashboard/sidebar/nav-user-with-teams.tsx b/frontend/src/components/dashboard/sidebar/nav-user-with-teams.tsx
index 2eef3cc1..7d846a43 100644
--- a/frontend/src/components/dashboard/sidebar/nav-user-with-teams.tsx
+++ b/frontend/src/components/dashboard/sidebar/nav-user-with-teams.tsx
@@ -249,7 +249,7 @@ export function NavUserWithTeams({
>
)}
-
+ {/*
Add team
-
+ */}
{/* User Settings Section */}
diff --git a/frontend/src/components/team/create-team-dialog.tsx b/frontend/src/components/team/create-team-dialog.tsx
new file mode 100644
index 00000000..9ccda150
--- /dev/null
+++ b/frontend/src/components/team/create-team-dialog.tsx
@@ -0,0 +1,31 @@
+"use client"
+
+import * as React from "react"
+import {
+ Dialog,
+ DialogContent,
+ DialogDescription,
+ DialogHeader,
+ DialogTitle,
+} from "@/components/ui/dialog"
+import NewTeamForm from "@/components/basejump/new-team-form"
+
+interface CreateTeamDialogProps {
+ open: boolean
+ onOpenChange: (open: boolean) => void
+}
+export function CreateTeamDialog({ open, onOpenChange }: CreateTeamDialogProps) {
+ return (
+
+ )
+}
\ No newline at end of file
diff --git a/frontend/src/components/ui/tabs.tsx b/frontend/src/components/ui/tabs.tsx
new file mode 100644
index 00000000..497ba5ea
--- /dev/null
+++ b/frontend/src/components/ui/tabs.tsx
@@ -0,0 +1,66 @@
+"use client"
+
+import * as React from "react"
+import * as TabsPrimitive from "@radix-ui/react-tabs"
+
+import { cn } from "@/lib/utils"
+
+function Tabs({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function TabsList({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function TabsTrigger({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function TabsContent({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export { Tabs, TabsList, TabsTrigger, TabsContent }