Files
Domain_web/web/index.html
Андрей Бобырев 311e501561 feat: lightweight static PCA Lab site with domain groups
Replace Next.js scanner deploy with static React CDN pages: student
VPN cabinet, regional setup, curated blocked-domain lists, and nginx
one-line install on port 80 without touching Amnezia/Docker services.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-28 03:34:31 +03:00

68 lines
2.7 KiB
HTML

<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>PCA Lab — Исследования в области AI и кибербезопасности</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&family=Instrument+Serif&display=swap" rel="stylesheet">
<style>
:root{
--bg: #f4f5f7;
--bg-elev: #ffffff;
--bg-tint: #f9fafb;
--ink: #1d1d1f;
--ink-2: #424245;
--ink-3: #6e6e73;
--ink-4: #8e8e93;
--line: rgba(0,0,0,0.07);
--line-2: rgba(0,0,0,0.04);
--accent: #1d1d1f; /* serious editorial black */
--accent-2:#0a0a0b;
--accent-soft:#f1f2f6;
--brand:#0f5dff; /* tech blue */
--brand-soft:#e6f0ff;
--green:#1f7a3a;
--green-soft:#e4f8ea;
--amber:#a36a00;
--amber-soft:#fff2dc;
--radius-card: 22px;
--radius-inner: 14px;
--shadow-card: 0 1px 0 rgba(255,255,255,.7) inset, 0 1px 2px rgba(16,24,40,.04), 0 8px 24px rgba(16,24,40,.05);
--shadow-pop: 0 1px 0 rgba(255,255,255,.7) inset, 0 4px 14px rgba(16,24,40,.08), 0 24px 56px rgba(16,24,40,.10);
--font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
--serif: "Instrument Serif", "Times New Roman", Georgia, serif;
--mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);font-family:var(--font);
-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
font-feature-settings:"ss01","cv11";}
a{color:inherit;text-decoration:none}
button{font-family:inherit}
::selection{background:var(--accent-soft);color:var(--ink)}
body{
background:
radial-gradient(900px 500px at 110% -10%, #e7f0ff 0%, transparent 55%),
radial-gradient(900px 500px at -10% 30%, #f1eaff 0%, transparent 55%),
var(--bg);
min-height:100vh;
}
#root{min-height:100vh}
</style>
<script src="https://unpkg.com/react@18.3.1/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@18.3.1/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://unpkg.com/@babel/standalone@7.26.0/babel.min.js" crossorigin></script>
</head>
<body>
<div id="root"></div>
<script type="text/babel" src="ui.jsx"></script>
<script type="text/babel" src="nav.jsx"></script>
<script type="text/babel" src="home-app.jsx"></script>
</body>
</html>