diff --git a/WatchIt.Website/WatchIt.Website/Components/MediaPage/CreatorRolesPanelComponent.razor b/WatchIt.Website/WatchIt.Website/Components/MediaPage/CreatorRolesPanelComponent.razor
new file mode 100644
index 0000000..875dc3c
--- /dev/null
+++ b/WatchIt.Website/WatchIt.Website/Components/MediaPage/CreatorRolesPanelComponent.razor
@@ -0,0 +1,10 @@
+
\ No newline at end of file
diff --git a/WatchIt.Website/WatchIt.Website/Components/MediaPage/CreatorRolesPanelComponent.razor.cs b/WatchIt.Website/WatchIt.Website/Components/MediaPage/CreatorRolesPanelComponent.razor.cs
new file mode 100644
index 0000000..4a98650
--- /dev/null
+++ b/WatchIt.Website/WatchIt.Website/Components/MediaPage/CreatorRolesPanelComponent.razor.cs
@@ -0,0 +1,22 @@
+using Microsoft.AspNetCore.Components;
+using WatchIt.Website.Services.WebAPI.Media;
+
+namespace WatchIt.Website.Components.MediaPage;
+
+public partial class ActorRolesPanelComponent : ComponentBase
+{
+ #region SERVICES
+
+ [Inject] private IMediaWebAPIService MediaWebAPIService { get; set; } = default!;
+
+ #endregion
+
+
+
+ #region PARAMETERS
+
+ [Parameter] public string Class { get; set; } = string.Empty;
+ [Parameter] public required long Id { get; set; }
+
+ #endregion
+}
\ No newline at end of file
diff --git a/WatchIt.Website/WatchIt.Website/Components/MediaPage/CreatorRolesPanelComponent.razor.css b/WatchIt.Website/WatchIt.Website/Components/MediaPage/CreatorRolesPanelComponent.razor.css
new file mode 100644
index 0000000..e69de29