@using Indotalent.Shared.Consts @inherits LayoutComponentBase @inject NavigationManager Navigation
@* Left Panel - Branding *@
Blazor CRM
Complete Source Code Solution

Your Business,
Your CRM, Your Way

A complete, end-to-end CRM with full source code. Manage your leads, sales, purchases, and inventory — all in one place.

Pipeline & Lead Management
Campaigns, budgets, leads, contacts & sales team
Sales & Purchase
Orders, invoices, payments & full procurement
Inventory & Reporting
Products, warehouses, stock counts & full reports
Production-Ready Source Code
Built with .NET 10, Blazor Server & MudBlazor 9
@* Right Panel - Form Area *@
@* Mobile Brand Strip *@
@GlobalConsts.AppInitial
@Body
@code { private MudTheme _theme = new() { PaletteLight = new PaletteLight() { Primary = "#6366F1", Secondary = "#818CF8", Tertiary = "#A5B4FC", AppbarBackground = "#6366F1", DrawerBackground = "#F8FAFC", Background = "#F8FAFC", Surface = "#FFFFFF", TextPrimary = "#1E293B", TextSecondary = "#64748B", Divider = "#E2E8F0", DividerLight = "#F1F5F9", }, Typography = new Typography() { Default = new DefaultTypography() { FontFamily = new[] { "Poppins", "sans-serif" } } } }; private void NavigateToHome() { Navigation.NavigateTo("/", forceLoad: true); } }