diff --git a/app/MindWork AI Studio/Chat/ContentBlockComponent.razor b/app/MindWork AI Studio/Chat/ContentBlockComponent.razor new file mode 100644 index 0000000..f103336 --- /dev/null +++ b/app/MindWork AI Studio/Chat/ContentBlockComponent.razor @@ -0,0 +1,18 @@ +@using MudBlazor + + + + + Y + + + You + + + + + + + bla bla bla + + \ No newline at end of file diff --git a/app/MindWork AI Studio/Chat/ContentBlockComponent.razor.cs b/app/MindWork AI Studio/Chat/ContentBlockComponent.razor.cs new file mode 100644 index 0000000..08fc3f5 --- /dev/null +++ b/app/MindWork AI Studio/Chat/ContentBlockComponent.razor.cs @@ -0,0 +1,7 @@ +using Microsoft.AspNetCore.Components; + +namespace AIStudio.Chat; + +public partial class ContentBlockComponent : ComponentBase +{ +} \ No newline at end of file diff --git a/app/MindWork AI Studio/Components/Pages/Chat.razor b/app/MindWork AI Studio/Components/Pages/Chat.razor new file mode 100644 index 0000000..9f9400b --- /dev/null +++ b/app/MindWork AI Studio/Components/Pages/Chat.razor @@ -0,0 +1,26 @@ +@page "/chat" +@using AIStudio.Chat + +Chats + +
+
+ + + + + + + + + + + + +
+ + + + + +
\ No newline at end of file diff --git a/app/MindWork AI Studio/Components/Pages/Chat.razor.cs b/app/MindWork AI Studio/Components/Pages/Chat.razor.cs new file mode 100644 index 0000000..02f3e0a --- /dev/null +++ b/app/MindWork AI Studio/Components/Pages/Chat.razor.cs @@ -0,0 +1,7 @@ +using Microsoft.AspNetCore.Components; + +namespace AIStudio.Components.Pages; + +public partial class Chat : ComponentBase +{ +} \ No newline at end of file