-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 2.51 KB
/
Copy pathindex.html
File metadata and controls
61 lines (61 loc) · 2.51 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="light dark" />
<meta name="theme-color" content="#f8f9fc" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!--
Theme is intentionally NOT persisted: the suite stores nothing in
localStorage or cookies (see the privacy boundary on the home page). On
load it follows the OS color-scheme preference; the header toggle changes
it for the current session only. Runs before first paint to avoid a flash.
-->
<script>
(function () {
var root = document.documentElement;
function apply(theme) {
root.classList.toggle("dark", theme === "dark");
}
var prefersDark =
window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches;
apply(prefersDark ? "dark" : "light");
window.__theme = {
get: function () {
return root.classList.contains("dark") ? "dark" : "light";
},
set: function (theme) {
apply(theme);
},
};
})();
</script>
<!--
No web-font CDN: the suite makes zero external requests (privacy boundary,
enforced by e2e). Inter and JetBrains Mono are the first preferences in the
Tailwind font stack and render when available, with system fallbacks.
-->
<title>Payment Intelligence Modules. ISO 20022 review tools</title>
<meta
name="description"
content="Browser-only suite of ISO 20022 payment review tools: scrub identifiers from XML messages and turn pacs.* / camt.* messages into plain-language narratives. Nothing is uploaded."
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Payment Intelligence Modules" />
<meta
property="og:description"
content="Browser-only ISO 20022 payment review tools. Scrub identifiers and read pacs.* / camt.* messages as plain language. Nothing is uploaded."
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Payment Intelligence Modules" />
<meta
name="twitter:description"
content="Browser-only ISO 20022 payment review tools. Scrub identifiers and read pacs.* / camt.* messages as plain language. Nothing is uploaded."
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>