37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<?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’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';
|
|
?>
|