Newer
Older
smart-home-server / webclient / ui.php
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <title>UI Kit</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <link rel="stylesheet" href="/dist/css/main.css">
</head>
<body>

    <header class="ui_header">
        <h1>UI Kit</h1>
        <p>Набор базовых элементов интерфейса</p>
    </header>

    <main class="ui_container">

        <? include "ui_components/typography.php" ?>
        <? include "ui_components/palette.php" ?>
        <? include "ui_components/buttons.php" ?>
        <? include "ui_components/forms.php" ?>
        <? include "ui_components/cards.php" ?>
        <? include "ui_components/badges.php" ?>
        <? include "ui_components/tables.php" ?>
        <? include "ui_components/lists.php" ?>
        <? include "ui_components/toasts.php" ?>
        <? include "ui_components/modals.php" ?>

    </main>

</body>
</html>