import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; import { Button } from "@/components/ui/button"; import { ExternalLink, PlusIcon } from "lucide-react"; import { AddWorker } from "./workers/add-worker"; import { AddManager } from "./manager/add-manager"; import Link from "next/link"; export const AddNode = () => { return ( Add Node Follow the steps to add a new node to your cluster, before you start using this feature, you need to understand how docker swarm works.{" "} Docker Swarm Architecture
Worker Manager
); };