Albert-yz9yt commited on
Commit
b2c76cd
·
verified ·
1 Parent(s): 751fc85

Add landing page for organization README space

Browse files
Files changed (1) hide show
  1. index.html +151 -0
index.html ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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" />
6
+ <title>BugTraceAI</title>
7
+ <style>
8
+ :root {
9
+ --bg: #09111f;
10
+ --panel: rgba(12, 23, 40, 0.78);
11
+ --border: rgba(130, 170, 220, 0.22);
12
+ --text: #eaf1fb;
13
+ --muted: #9eb0c8;
14
+ --accent: #63d2ff;
15
+ --accent-2: #80f0c7;
16
+ }
17
+ * { box-sizing: border-box; }
18
+ body {
19
+ margin: 0;
20
+ min-height: 100vh;
21
+ font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
22
+ color: var(--text);
23
+ background:
24
+ radial-gradient(circle at top left, rgba(99, 210, 255, 0.18), transparent 28%),
25
+ radial-gradient(circle at top right, rgba(128, 240, 199, 0.14), transparent 24%),
26
+ linear-gradient(180deg, #08101d 0%, #09111f 45%, #050912 100%);
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: center;
30
+ padding: 32px;
31
+ }
32
+ .shell {
33
+ width: min(980px, 100%);
34
+ background: var(--panel);
35
+ border: 1px solid var(--border);
36
+ border-radius: 24px;
37
+ padding: 40px;
38
+ backdrop-filter: blur(14px);
39
+ box-shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
40
+ }
41
+ .eyebrow {
42
+ display: inline-block;
43
+ font-size: 12px;
44
+ letter-spacing: 0.18em;
45
+ text-transform: uppercase;
46
+ color: var(--accent-2);
47
+ margin-bottom: 14px;
48
+ }
49
+ h1 {
50
+ margin: 0;
51
+ font-size: clamp(40px, 6vw, 72px);
52
+ line-height: 0.95;
53
+ letter-spacing: -0.04em;
54
+ }
55
+ .lead {
56
+ margin: 20px 0 0;
57
+ max-width: 720px;
58
+ font-size: 18px;
59
+ line-height: 1.7;
60
+ color: var(--muted);
61
+ }
62
+ .grid {
63
+ margin-top: 34px;
64
+ display: grid;
65
+ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
66
+ gap: 18px;
67
+ }
68
+ .card {
69
+ padding: 20px;
70
+ border-radius: 18px;
71
+ border: 1px solid rgba(130, 170, 220, 0.18);
72
+ background: rgba(255, 255, 255, 0.02);
73
+ }
74
+ .card h2 {
75
+ margin: 0 0 10px;
76
+ font-size: 18px;
77
+ }
78
+ .card p {
79
+ margin: 0;
80
+ color: var(--muted);
81
+ line-height: 1.6;
82
+ font-size: 14px;
83
+ }
84
+ .links {
85
+ margin-top: 30px;
86
+ display: flex;
87
+ flex-wrap: wrap;
88
+ gap: 12px;
89
+ }
90
+ a {
91
+ color: var(--text);
92
+ text-decoration: none;
93
+ }
94
+ .button {
95
+ padding: 12px 16px;
96
+ border-radius: 999px;
97
+ border: 1px solid rgba(99, 210, 255, 0.26);
98
+ background: rgba(99, 210, 255, 0.08);
99
+ transition: 160ms ease;
100
+ }
101
+ .button:hover {
102
+ transform: translateY(-1px);
103
+ border-color: rgba(128, 240, 199, 0.4);
104
+ background: rgba(128, 240, 199, 0.08);
105
+ }
106
+ .foot {
107
+ margin-top: 26px;
108
+ font-size: 13px;
109
+ color: #8ea2bb;
110
+ line-height: 1.6;
111
+ }
112
+ </style>
113
+ </head>
114
+ <body>
115
+ <main class="shell">
116
+ <div class="eyebrow">BugTraceAI</div>
117
+ <h1>AI for authorized security work.</h1>
118
+ <p class="lead">
119
+ BugTraceAI builds security-focused AI models and tooling for application security research,
120
+ finding triage, technical reporting, and remediation support across authorized workflows.
121
+ </p>
122
+
123
+ <section class="grid">
124
+ <article class="card">
125
+ <h2>CORE-Fast</h2>
126
+ <p>Lightweight model for rapid triage, concise payload review, scanner output analysis, and short-form engineering guidance.</p>
127
+ </article>
128
+ <article class="card">
129
+ <h2>CORE-Pro</h2>
130
+ <p>Higher-capacity model for long-context investigation, professional reporting, exploit-chain review, and remediation planning.</p>
131
+ </article>
132
+ <article class="card">
133
+ <h2>Workflow</h2>
134
+ <p>Designed for authorized security operations, defensive research, bug bounty workflows, and evidence-based technical analysis.</p>
135
+ </article>
136
+ </section>
137
+
138
+ <div class="links">
139
+ <a class="button" href="https://huggingface.co/BugTraceAI">Organization</a>
140
+ <a class="button" href="https://huggingface.co/BugTraceAI/BugTraceAI-CORE-Fast">CORE-Fast</a>
141
+ <a class="button" href="https://huggingface.co/BugTraceAI/BugTraceAI-CORE-Pro">CORE-Pro</a>
142
+ <a class="button" href="https://bugtraceai.com">Website</a>
143
+ </div>
144
+
145
+ <p class="foot">
146
+ BugTraceAI systems are intended for authorized security work, defensive research, education,
147
+ and engineering support. Outputs should be validated by humans before operational use.
148
+ </p>
149
+ </main>
150
+ </body>
151
+ </html>