-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (91 loc) · 3.63 KB
/
index.html
File metadata and controls
105 lines (91 loc) · 3.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DEFRAG | Clarity at Scale</title>
<meta name="description"
content="The integrated platform for behavioral intelligence. Manuals, Developer Dashboard, and Enterprise APIs for understanding human dynamics.">
<meta name="keywords"
content="behavioral api, developer platform, user manuals, relationship intelligence, defrag, dashboard, api keys, documentation">
<meta name="author" content="DEFRAG Platform">
<!-- Open Graph / Social -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://defrag.app/">
<meta property="og:title" content="DEFRAG | Clarity at Scale">
<meta property="og:description"
content="The integrated platform for behavioral intelligence. API-first infrastructure for teams and developers.">
<meta property="og:image" content="https://defrag.app/og-platform-v2.png">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://defrag.app/">
<meta name="twitter:title" content="DEFRAG | Clarity at Scale">
<meta name="twitter:description"
content="The integrated platform for behavioral intelligence. API-first infrastructure for teams and developers.">
<!-- Structured Data (Product) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "DEFRAG",
"applicationCategory": "LifestyleApplication",
"operatingSystem": "Web",
"offers": {
"@type": "Offer",
"price": "19.00",
"priceCurrency": "USD"
},
"description": "Generates personalized relationship manuals based on astronomical data and psychological frameworks."
}
</script>
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="manifest" href="/manifest.json">
<link rel="apple-touch-icon" href="/favicon.svg">
<!-- Fonts -->
<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=JetBrains+Mono:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap"
rel="stylesheet">
<style>
body {
background-color: #050505;
color: #ffffff;
font-family: 'Inter', sans-serif;
overflow-x: hidden;
}
.font-mono {
font-family: 'JetBrains Mono', monospace;
}
/* Selection styling */
::selection {
background: #ea580c;
color: white;
}
</style>
<!-- Google Analytics 4 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-G0H71HM9R7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
// Configure with consent mode for GDPR compliance
gtag('consent', 'default', {
'analytics_storage': 'granted',
'ad_storage': 'denied',
'ad_user_data': 'denied',
'ad_personalization': 'denied'
});
gtag('config', 'G-G0H71HM9R7', {
'anonymize_ip': true,
'cookie_flags': 'SameSite=None;Secure'
});
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>