-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (103 loc) · 2.86 KB
/
index.html
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
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aiframe.ai – Coming Soon</title>
<style>
/* Basic reset and layout */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #151515;
color: #f5f5f5;
font-family: Arial, sans-serif;
}
.container {
text-align: center;
max-width: 600px;
margin: 3rem auto;
padding: 0 1rem;
}
.logo {
max-width: 200px;
margin-bottom: 1.5rem;
}
.hero {
width: 100%;
margin: 2rem 0;
border-radius: 5px;
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
letter-spacing: 1px;
}
p {
line-height: 1.5;
margin: 0.75rem 0 1.25rem;
}
.tagline {
font-size: 1.1rem;
font-weight: 300;
margin-bottom: 2rem;
opacity: 0.9;
}
.btn {
display: inline-block;
text-decoration: none;
background-color: #00cc88;
color: #151515;
padding: 0.75rem 1.25rem;
border-radius: 4px;
transition: opacity 0.3s;
font-weight: bold;
}
.btn:hover {
opacity: 0.8;
}
.footer {
margin-top: 2rem;
font-size: 0.875rem;
color: #888;
}
</style>
</head>
<body>
<div class="container">
<!-- Logo -->
<img class="logo" src="aiframe-logo.png" alt="Aiframe AI Logo" />
<h1>Aiframe.ai</h1>
<p class="tagline">Elevating sales engagement with next-gen digital avatars.</p>
<!-- Hero image -->
<img class="hero" src="hero.png" alt="Our Vision for AI-driven Avatars" />
<p>
We’re working on something new—bringing personalized, AI-driven interactions
to modern sales teams. Stay ahead of the curve with technology that blends
realism and scalability.
</p>
<p>
Building on our proprietary AI models, Aiframe is crafting digital avatars
that adapt to each seller’s unique style, delivering personalized demo
experiences in real time. We’re here to help your team engage customers
like never before—driving measurable results and real business success.
</p>
<p>Want to be the first to know more?</p>
<a class="btn" href="mailto:[email protected]">Get in Touch</a>
<div class="footer">
© <span id="year"></span> Aiframe AI – Project Under Development
<div style="margin-top: 1rem;">
<a href="/privacy-policy.html" style="color: #888; margin-right: 1rem; text-decoration: none;">Privacy Policy</a>
<a href="/terms-of-service.html" style="color: #888; text-decoration: none;">Terms of Service</a>
</div>
</div>
</div>
<script>
// Display current year
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>