add all files

This commit is contained in:
Rucus
2026-02-17 09:29:34 -06:00
parent b8c8d67c67
commit 782d203799
21925 changed files with 2433086 additions and 0 deletions

36
lasuca/production.php Normal file
View File

@@ -0,0 +1,36 @@
<?php // phpcs:ignoreFile
$pageTitle = 'Production Dashboard';
$metaDescription = 'Live milling and scale snapshots from the LASUCA production floor.';
$activeNav = 'production';
require __DIR__ . '/inc/theme-header.php';
?>
<main>
<header class="hero hero-sub">
<div class="container">
<span class="badge">Production</span>
<h1>Real-time milling and scale insights</h1>
<p>
Track today&rsquo;s grinding rates, intake tonnage, and run hours. These metrics update directly
from the LASUCA control system and scale house.
</p>
</div>
</header>
<section class="page-section py-5">
<div class="container">
<div class="row g-4">
<div class="col-xl-6">
<?php include __DIR__ . '/milldata.php'; ?>
</div>
<div class="col-xl-6">
<?php include __DIR__ . '/scaleinfo.php'; ?>
</div>
</div>
</div>
</section>
</main>
<?php
require __DIR__ . '/inc/theme-footer.php';
?>