шаг 3 завершен

This commit is contained in:
Alisa
2026-06-04 00:27:17 +03:00
parent 420e67c9bd
commit 62ce8c4d01
27 changed files with 1565 additions and 42 deletions
+37 -1
View File
@@ -4,4 +4,40 @@ declare(strict_types=1);
require_once dirname(__DIR__) . '/app/bootstrap.php';
echo 'RybStock admin panel will be created on the next steps.';
$sections = [
'Товары',
'Категории',
'Фасовки',
'Заказы',
'Промокоды',
'Акции',
'Популярные товары',
'Отзывы',
'Настройки',
'Прайс-лист',
];
?>
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Админка Рыбсток</title>
<link rel="stylesheet" href="/assets/css/app.css">
</head>
<body>
<main class="page">
<section class="start-screen wide">
<p class="eyebrow">Админка</p>
<h1>Рыбсток</h1>
<p>Подготовлены основные разделы будущей панели управления.</p>
<div class="admin-grid">
<?php foreach ($sections as $section): ?>
<div class="admin-tile"><?= e($section) ?></div>
<?php endforeach; ?>
</div>
</section>
</main>
</body>
</html>