-
+
+
+ Preview
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+ Node
+ Console
-
+
diff --git a/components/navbar/index.tsx b/components/navbar/index.tsx
new file mode 100644
index 0000000..54eb114
--- /dev/null
+++ b/components/navbar/index.tsx
@@ -0,0 +1,14 @@
+import { ChevronLeft, Home } from "lucide-react"
+import { Button } from "../ui/button"
+
+export default function Navbar() {
+ return (
+
+ )
+}
diff --git a/components/ui/tab.tsx b/components/ui/tab.tsx
new file mode 100644
index 0000000..11ca1df
--- /dev/null
+++ b/components/ui/tab.tsx
@@ -0,0 +1,31 @@
+"use client"
+
+import { X } from "lucide-react"
+import { Button } from "./button"
+
+export default function Tab({
+ children,
+ onClick,
+ onClose,
+}: {
+ children: React.ReactNode
+ onClick?: () => void
+ onClose?: () => void
+}) {
+ return (
+
+ )
+}