@using Indotalent.Shared.Consts @inherits LayoutComponentBase @inject NavigationManager Navigation
@GlobalConsts.AppName
@GlobalConsts.AppTagline

Welcome Back to
Your SCM Platform

A complete supply chain solution—seamless procurement to bill, streamlined sales to invoice.

Sales & Purchase
Quotation to payment, requisition to bill
Inventory & Warehouse
Product catalog, stock management, transfers
Customer & Vendor
Groups, categories, contacts, relationship tracking
Reports & Analytics
Sales, purchase, delivery and return reports
@GlobalConsts.AppName
@Body
@code { protected override void OnInitialized() { // Set MudTheme for emerald primary color var theme = new MudBlazor.MudTheme(); theme.PaletteLight.Primary = "#10B981"; theme.PaletteLight.Secondary = "#059669"; theme.PaletteLight.AppbarBackground = "#10B981"; theme.Typography.Default.FontFamily = new[] { "Poppins", "sans-serif" }; } private void NavigateToHome() { Navigation.NavigateTo("/", forceLoad: true); } }