-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (84 loc) · 2.46 KB
/
Copy pathindex.html
File metadata and controls
84 lines (84 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Akrivas, LLC - AI Technology Solutions</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
text-align: center;
max-width: 600px;
margin: 20px;
}
h1 {
color: #333;
margin-bottom: 20px;
font-size: 2.5em;
}
.tagline {
color: #666;
font-size: 1.2em;
margin-bottom: 30px;
}
.description {
color: #555;
margin-bottom: 20px;
font-size: 1.1em;
}
.contact {
background: #f8f9fa;
padding: 20px;
border-radius: 5px;
margin-top: 30px;
}
.logo {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 50%;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 2em;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">A</div>
<h1>Akrivas, LLC</h1>
<p class="tagline">AI Technology Solutions</p>
<p class="description">
Technology company developing innovative AI-powered applications
for real estate, digital media, and business automation.
</p>
<p class="description">
Currently building: AI-powered home staging photo generation platform
to help real estate professionals create stunning property listings.
</p>
<div class="contact">
<strong>Business Inquiries</strong><br>
Email: nick@akrivas.com<br>
Akrivas, LLC
</div>
</div>
</body>
</html>