mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 13:00:20 +00:00 
			
		
		
		
	
		
			Some checks are pending
		
		
	
	Build and Release / Read metadata (push) Waiting to run
				
			Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (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) (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 deb updater) (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 updater) (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) (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 deb updater) (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
				
			
		
			
				
	
	
		
			43 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			2.2 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>
 | 
						|
        <MudExpansionPanels Class="mb-3" MultiExpansion="@false">
 | 
						|
 | 
						|
            <ExpansionPanel HeaderIcon="@Icons.Material.Filled.MenuBook" HeaderText="@T("Introduction")" IsExpanded="@true">
 | 
						|
                <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>
 | 
						|
 | 
						|
            <ExpansionPanel HeaderIcon="@Icons.Material.Filled.EventNote" HeaderText="@T("Last Changelog")">
 | 
						|
                <MudMarkdown Value="@this.LastChangeContent" Props="Markdown.DefaultConfig"/>
 | 
						|
            </ExpansionPanel>
 | 
						|
 | 
						|
            <ExpansionPanel HeaderIcon="@Icons.Material.Filled.Lightbulb" HeaderText="@T("Vision")">
 | 
						|
                <Vision/>
 | 
						|
            </ExpansionPanel>
 | 
						|
            
 | 
						|
            <ExpansionPanel HeaderIcon="@Icons.Material.Filled.RocketLaunch" HeaderText="@T("Quick Start Guide")">
 | 
						|
                <MudMarkdown Props="Markdown.DefaultConfig" Value="@QUICK_START_GUIDE"/>
 | 
						|
            </ExpansionPanel>
 | 
						|
 | 
						|
        </MudExpansionPanels>
 | 
						|
    </InnerScrolling>
 | 
						|
</div> |