mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-16 18:06:28 +00:00
Some checks are pending
Build and Release / Determine run mode (push) Waiting to run
Build and Release / Read metadata (push) Blocked by required conditions
Build and Release / Sync Flatpak repo (push) Blocked by required conditions
Build and Release / Collect Flatpak artifacts (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
73 lines
4.5 KiB
Plaintext
73 lines
4.5 KiB
Plaintext
@attribute [Route(Routes.HOME)]
|
|
@inherits MSGComponentBase
|
|
|
|
<div class="inner-scrolling-context">
|
|
<MudImage Src="svg/banner.svg" Style="max-height: 16em; width: 100%; object-fit: cover;" />
|
|
<MudText Typo="Typo.h3" Class="mt-2 mb-2">
|
|
@T("Let's get started")
|
|
</MudText>
|
|
|
|
<InnerScrolling>
|
|
@if (this.HasVisibleHomePanels)
|
|
{
|
|
<MudExpansionPanels @key="@this.expansionPanelsRenderKey" Class="mb-3" MultiExpansion="@false">
|
|
|
|
@if (this.SettingsManager.ConfigurationData.App.ShowIntroduction)
|
|
{
|
|
<ExpansionPanel HeaderIcon="@Icons.Material.Filled.MenuBook" HeaderText="@T("Introduction")" IsExpanded="@this.IsPanelExpanded(PANEL_ID_BUILT_IN_INTRODUCTION)" ExpandedChanged="@(isExpanded => this.SetPanelExpanded(PANEL_ID_BUILT_IN_INTRODUCTION, isExpanded))">
|
|
<MudText Typo="Typo.h5" Class="mb-3">
|
|
@T("Welcome to MindWork AI Studio!")
|
|
</MudText>
|
|
<MudText Typo="Typo.body1" Class="mb-3" Style="text-align: justify; hyphens: auto;">
|
|
@T("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.")
|
|
</MudText>
|
|
<MudText Typo="Typo.body1" Class="mb-3">
|
|
@T("Here's what makes MindWork AI Studio stand out:")
|
|
</MudText>
|
|
<MudTextList Icon="@Icons.Material.Filled.CheckCircle" Clickable="@true" Items="@this.itemsAdvantages" Class="mb-3"/>
|
|
<MudText Typo="Typo.body1" Class="mb-3">
|
|
@T("We hope you enjoy using MindWork AI Studio to bring your AI projects to life!")
|
|
</MudText>
|
|
</ExpansionPanel>
|
|
}
|
|
|
|
@foreach (var introduction in this.introductions)
|
|
{
|
|
<ExpansionPanel @key="@introduction.Id" HeaderIcon="@Icons.Material.Filled.Info" HeaderText="@introduction.Title" IsExpanded="@this.IsPanelExpanded(IntroductionPanelId(introduction))" ExpandedChanged="@(isExpanded => this.SetPanelExpanded(IntroductionPanelId(introduction), isExpanded))">
|
|
<MudText Typo="Typo.body2" Class="mb-3">
|
|
@T("Version"): @introduction.VersionText
|
|
</MudText>
|
|
<MudJustifiedMarkdown Value="@introduction.Markdown" />
|
|
</ExpansionPanel>
|
|
}
|
|
|
|
@if (this.SettingsManager.ConfigurationData.App.ShowLastChangelog)
|
|
{
|
|
<ExpansionPanel HeaderIcon="@Icons.Material.Filled.EventNote" HeaderText="@T("Last Changelog")" IsExpanded="@this.IsPanelExpanded(PANEL_ID_LAST_CHANGELOG)" ExpandedChanged="@(isExpanded => this.SetPanelExpanded(PANEL_ID_LAST_CHANGELOG, isExpanded))">
|
|
<MudMarkdown Value="@this.LastChangeContent" Props="Markdown.DefaultConfig" MarkdownPipeline="Markdown.SAFE_MARKDOWN_PIPELINE"/>
|
|
</ExpansionPanel>
|
|
}
|
|
|
|
@if (this.SettingsManager.ConfigurationData.App.ShowVision)
|
|
{
|
|
<ExpansionPanel HeaderIcon="@Icons.Material.Filled.Lightbulb" HeaderText="@T("Vision")" IsExpanded="@this.IsPanelExpanded(PANEL_ID_VISION)" ExpandedChanged="@(isExpanded => this.SetPanelExpanded(PANEL_ID_VISION, isExpanded))">
|
|
<Vision/>
|
|
</ExpansionPanel>
|
|
}
|
|
|
|
@if (this.SettingsManager.ConfigurationData.App.ShowQuickStartGuide)
|
|
{
|
|
<ExpansionPanel HeaderIcon="@Icons.Material.Filled.RocketLaunch" HeaderText="@T("Quick Start Guide")" IsExpanded="@this.IsPanelExpanded(PANEL_ID_QUICK_START_GUIDE)" ExpandedChanged="@(isExpanded => this.SetPanelExpanded(PANEL_ID_QUICK_START_GUIDE, isExpanded))">
|
|
<MudMarkdown Props="Markdown.DefaultConfig" Value="@QUICK_START_GUIDE" MarkdownPipeline="Markdown.SAFE_MARKDOWN_PIPELINE"/>
|
|
</ExpansionPanel>
|
|
}
|
|
</MudExpansionPanels>
|
|
}
|
|
else
|
|
{
|
|
<MudText Typo="Typo.h5" Class="mb-3">
|
|
@T("Welcome to MindWork AI Studio!")
|
|
</MudText>
|
|
}
|
|
</InnerScrolling>
|
|
</div> |