-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (103 loc) · 2.67 KB
/
Copy pathindex.html
File metadata and controls
111 lines (103 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="refresh" content="0; url=demo/saas_visible.html" />
<title>SemeAI Gate</title>
<style>
:root {
color-scheme: light;
--sidebar: #303335;
--active: #99cccc;
--paper: #f7f8f8;
--line: #d8dddd;
--text: #60686d;
--heading: #31383d;
font-family:
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", sans-serif;
}
body {
display: grid;
min-height: 100vh;
margin: 0;
place-items: center;
color: var(--text);
background: var(--paper);
}
main {
width: min(720px, calc(100vw - 32px));
padding: 34px;
border: 1px solid var(--line);
border-top: 3px solid var(--active);
background: #fff;
}
.brand {
display: flex;
align-items: center;
gap: 12px;
color: var(--heading);
font-weight: 900;
}
.mark {
display: grid;
width: 36px;
height: 36px;
place-items: center;
border-radius: 50%;
color: #153638;
background: var(--active);
}
h1 {
margin: 24px 0 10px;
color: var(--heading);
font-size: clamp(30px, 5vw, 46px);
line-height: 1.05;
letter-spacing: 0;
}
p {
margin: 0 0 20px;
line-height: 1.55;
}
a {
display: inline-flex;
align-items: center;
min-height: 40px;
padding: 0 16px;
border: 1px solid #7ebfc1;
color: #244e51;
background: #e5f4f4;
font-weight: 800;
text-decoration: none;
}
.note {
margin-top: 18px;
color: #8b979d;
font-size: 13px;
}
</style>
<script>
window.location.replace("demo/saas_visible.html");
</script>
</head>
<body>
<main>
<div class="brand">
<span class="mark">SG</span>
<span>SemeAI Gate</span>
</div>
<h1>Check an AI answer before release.</h1>
<p>
SemeAI Gate is a small release-control layer for existing LLM products.
It returns SHOW, REVIEW, or BLOCK before an AI answer reaches a user.
</p>
<a href="demo/saas_visible.html">Open the hosted demo</a>
<p class="note">
This static page redirects to the SaaS-visible demo. Machine values
remain canonical: SHOW / REVIEW / BLOCK and PROCEED / NEEDS_REVIEW /
SILENCE.
</p>
</main>
</body>
</html>