diff --git a/app/MindWork AI Studio/Components/Pages/Home.razor b/app/MindWork AI Studio/Components/Pages/Home.razor index e68ac6e..392a239 100644 --- a/app/MindWork AI Studio/Components/Pages/Home.razor +++ b/app/MindWork AI Studio/Components/Pages/Home.razor @@ -1,3 +1,46 @@ @page "/" +Let's get started + + + + + +
+ + Introduction +
+
+ + + Welcome to MindWork AI Studio! + + + Thank you for considering MindWork AI Studio for your AI needs. This app is designed to help you harness + the power of Large Language Models (LLMs). Please note that this app doesn't come with an integrated + LLM. Instead, you will need to bring an API key from a suitable provider. + + + Here's what makes MindWork AI Studio stand out: + + + + We hope you enjoy using MindWork AI Studio to bring your AI projects to life! + + +
+ + + +
+ + Quick Start Guide +
+
+ + + +
+ +
\ No newline at end of file diff --git a/app/MindWork AI Studio/Components/Pages/Home.razor.cs b/app/MindWork AI Studio/Components/Pages/Home.razor.cs new file mode 100644 index 0000000..756d5b9 --- /dev/null +++ b/app/MindWork AI Studio/Components/Pages/Home.razor.cs @@ -0,0 +1,18 @@ +using AIStudio.Components.Blocks; + +using Microsoft.AspNetCore.Components; + +namespace AIStudio.Components.Pages; + +public partial class Home : ComponentBase +{ + private static readonly TextItem[] ITEMS = + [ + new TextItem("Free of charge", "The app is free to use, both for personal and commercial purposes."), + new TextItem("Independence", "Users are not tied to any single provider. The initial version supports OpenAI models (like GPT-4o, GPT-4, GPT-4 Turbo, etc.). Future versions will support other providers such as Mistral or Google Gemini."), + new TextItem("Unrestricted usage", "Unlike services like ChatGPT, which impose limits after intensive use, MindWork AI Studio offers unlimited usage through the providers API."), + new TextItem("Cost-effective", "You only pay for what you use, which can be cheaper than monthly subscription services like ChatGPT Plus, especially if used infrequently. But beware, here be dragons: For extremely intensive usage, the API costs can be significantly higher. Unfortunately, providers currently do not offer a way to display current costs in the app. Therefore, check your account with the respective provider to see how your costs are developing. When available, use prepaid and set a cost limit."), + new TextItem("Privacy", "The data entered into the app is not used for training by the providers since we are using the provider's API."), + new TextItem("Flexibility", "Choose the provider and model best suited for your current task."), + ]; +} \ No newline at end of file