Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions CulinaryCommandApp/Components/App.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="/" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
<link href="_content/Blazor.Bootstrap/blazor.bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" href="bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" />
<link rel="stylesheet" href="css/app.css" />
Expand All @@ -34,16 +31,6 @@
crossorigin="anonymous"></script>

<script src="_framework/blazor.server.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/js/bootstrap.bundle.min.js" integrity="sha384-ndDqU0Gzau9qJ1lfW4pNLlhNTkCfHzAVBReH9diLvGRem5+R9g2FzA8ZGN954O5Q" crossorigin="anonymous"></script>
<!-- Add chart.js reference if chart components are used in your application. -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/4.0.1/chart.umd.js" integrity="sha512-gQhCDsnnnUfaRzD8k1L5llCCV6O9HN09zClIzzeJ8OJ9MpGmIlCxm+pdCkqTwqJ4JcjbojFr79rl2F1mzcoLMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- Add chartjs-plugin-datalabels.min.js reference if chart components with data label feature is used in your application. -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/chartjs-plugin-datalabels/2.2.0/chartjs-plugin-datalabels.min.js" integrity="sha512-JPcRR8yFa8mmCsfrw4TNte1ZvF1e3+1SdGMslZvmrzDYxS69J7J49vkFL8u6u8PlPJK+H3voElBtUCzaXj+6ig==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- Add sortable.js reference if SortableList component is used in your application. -->
<script src="https://cdn.jsdelivr.net/npm/sortablejs@latest/Sortable.min.js"></script>
<script src="_content/Blazor.Bootstrap/blazor.bootstrap.js"></script>
<script src="https://cdn.plot.ly/plotly-2.35.2.min.js"></script>
<script src="_content/Plotly.Blazor/plotly-blazor.js"></script>
</body>

</html>
338 changes: 12 additions & 326 deletions CulinaryCommandApp/Components/Pages/Dashboard.razor

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
@using CulinaryCommand.Services
@using CulinaryCommand.Services.UserContextSpace
@using CulinaryCommandApp.Inventory.Entities
@using Unit = CulinaryCommandApp.Inventory.Entities.Unit
@using CulinaryCommandApp.Inventory.Services
@using CulinaryCommandApp.Inventory.Services.Interfaces
@using Microsoft.AspNetCore.Authorization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 40px;
width: 100%;
max-width: 960px;
max-width: 700px;
}

.app-title {
Expand Down
10 changes: 0 additions & 10 deletions CulinaryCommandApp/Components/Pages/UserSettings/Settings.razor
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,6 @@
<i class="fas fa-building me-2"></i>Company
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link @(ActiveTab == "inventory-config" ? "active" : "")"
@onclick="@(() => NavigateToTab("inventory-config"))" type="button">
Inventory Config
</button>
</li>
</ul>

<!-- Tab Content -->
Expand Down Expand Up @@ -93,10 +87,6 @@
<SettingsCompany />
break;

case "inventory-config":
<SettingsInventoryConfigurations />
break;

default:
<SettingsProfile />
break;
Expand Down

This file was deleted.

9 changes: 1 addition & 8 deletions CulinaryCommandApp/Components/_Imports.razor
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,4 @@
@using CulinaryCommand.Services
@using CulinaryCommand.Components.Layout
@using CulinaryCommand.Components.Custom
@using CulinaryCommand.Components.Pages
@using BlazorBootstrap;
@using Plotly.Blazor
@using Plotly.Blazor.LayoutLib
@using Plotly.Blazor.Traces
@using Plotly.Blazor.Traces.ScatterLib
@using Plotly.Blazor.Traces.BarLib
@using Plotly.Blazor.Traces.PieLib
@using CulinaryCommand.Components.Pages
Loading
Loading