I have drawn a tikzpicture in a frame and everything was ok. But now I should add a text to it, and in every way I try to add the text, the placement of other components changes and ruins everything (I have blank space and want to place the text in there). I couldn't find any answer. How should i do that?
\documentclass{beamer}
\usepackage{tikz}
\usepackage{smartdiagram}
\usesmartdiagramlibrary{additions}
\tikzset{module/.append style={top color=\col,bottom color=\col}}
\usepackage{adjustbox}
\usepackage{tikz}
\usetikzlibrary{tikzmark}
\usetikzlibrary{mindmap,trees}
\usepackage{verbatim}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\begin{frame}{Title}
\begin{adjustbox}{max totalsize={\textwidth}{\textheight},center}
\begin{tikzpicture}[
level 1 concept/.append style={text width=3cm,font=\sffamily\LARGE,level distance=6cm,sibling angle=110,
every child/.style={concept color=orange}},
level 2 concept/.append style={text width=3cm,font=\sffamily\LARGE,level distance=5cm,sibling angle=90,
every child/.style={concept color=blue!80!black}}
]
\path[mindmap,concept color=black,text=white]
node[concept,scale=0.8] {\huge A}
[clockwise from=-10]
child[] {
node[concept] {B}
[clockwise from=45]
child[sibling angle=45] { node[concept] {D}}
child[sibling angle=45] { node[concept] {E } }
child[sibling angle=45] { node[concept] {F}}
child[sibling angle=45] { node[concept] {G} }
}
child[] {
node[concept] {C}
[clockwise from=-45]
child[]{ node[concept]{ H}}
child[]{ node[concept]{ I}}
};
\end{tikzpicture}
\end{adjustbox}
\end{frame}
\end{document}
Here is my code and its output is as follow:
I want to add text and get something like follow without relocating other components.



