CoolFace
Apppublic

PrometheusGroup/filemaster-control-panel

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
index.html30 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>MCP Toolkit Control Panel</title>7    <link rel="stylesheet" href="style.css">8    <script src="https://cdn.tailwindcss.com"></script>9</head>10<body class="dark-theme">11    <custom-navbar></custom-navbar>12    <div id="root"></div>13    <custom-footer></custom-footer>14    <script src="components/navbar.js"></script>15    <script src="components/footer.js"></script>16    <script src="https://unpkg.com/react@18/umd/react.production.min.js"></script>17    <script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>18    <script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>19    <script type="text/babel" src="script.js"></script>20<style>21        body {22            opacity: 0;23            animation: fadeIn 0.5s ease-in forwards;24        }25        @keyframes fadeIn {26            to { opacity: 1; }27        }28    </style>29</body>30</html>