diff --git a/app/MindWork AI Studio/Components/Blocks/ProcessComponent.razor b/app/MindWork AI Studio/Components/Blocks/ProcessComponent.razor
new file mode 100644
index 00000000..54d61e93
--- /dev/null
+++ b/app/MindWork AI Studio/Components/Blocks/ProcessComponent.razor
@@ -0,0 +1,11 @@
+@typeparam T
+
+@if (this.ShowProgressAnimation)
+{
+
+
+
+}
+
+
+
\ No newline at end of file
diff --git a/app/MindWork AI Studio/Components/Blocks/ProcessComponent.razor.cs b/app/MindWork AI Studio/Components/Blocks/ProcessComponent.razor.cs
new file mode 100644
index 00000000..6d711326
--- /dev/null
+++ b/app/MindWork AI Studio/Components/Blocks/ProcessComponent.razor.cs
@@ -0,0 +1,16 @@
+using AIStudio.Tools;
+
+using Microsoft.AspNetCore.Components;
+
+namespace AIStudio.Components.Blocks;
+
+public partial class ProcessComponent : ComponentBase where T : struct, Enum
+{
+ [Parameter]
+ public bool ShowProgressAnimation { get; set; }
+
+ [Parameter]
+ public ProcessStepValue StepValue { get; set; }
+
+ private readonly Process process = Process.INSTANCE;
+}
\ No newline at end of file
diff --git a/app/MindWork AI Studio/Components/Blocks/ReadWebContent.razor b/app/MindWork AI Studio/Components/Blocks/ReadWebContent.razor
index fc716034..1d83309c 100644
--- a/app/MindWork AI Studio/Components/Blocks/ReadWebContent.razor
+++ b/app/MindWork AI Studio/Components/Blocks/ReadWebContent.razor
@@ -11,12 +11,7 @@
@if (this.AgentIsRunning)
{
-
-
-
-
-
-
+
}
}
\ No newline at end of file