-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
217 lines (187 loc) · 6.19 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Petabi, Inc. - Advanced Data Processing & Machine Learning Solutions</title>
<style>
:root {
--primary-color: #8B0000;
--text-color: #333;
--background-light: #f5f5f5;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: var(--text-color);
}
header {
background: white;
padding: 1rem 0;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.header-content {
display: flex;
align-items: center;
gap: 2rem;
}
.logo {
width: 50px;
height: 50px;
}
.logo svg {
width: 100%;
height: 100%;
}
.company-name {
font-size: 1.5rem;
font-weight: 600;
color: var(--primary-color);
}
.hero {
padding: 4rem 0;
background: var(--background-light);
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--primary-color);
}
.hero p {
font-size: 1.25rem;
max-width: 800px;
margin-bottom: 2rem;
}
.main-content {
padding: 4rem 0;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.feature {
padding: 2rem;
background: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.feature h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}
.github-section {
padding: 4rem 0;
background: var(--background-light);
text-align: center;
}
.github-link {
display: inline-block;
padding: 1rem 2rem;
background: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 4px;
font-weight: 500;
margin-top: 1rem;
transition: background-color 0.3s;
}
.github-link:hover {
background-color: #660000;
}
footer {
background: var(--text-color);
color: white;
padding: 2rem 0;
text-align: center;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1.1rem;
}
.features {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<div class="logo">
<svg viewBox="0 0 160 280" xmlns="http://www.w3.org/2000/svg">
<g stroke="#8B0000" fill="none" stroke-width="40">
<!-- Upper circle -->
<circle cx="80" cy="80" r="60" />
<!-- Lower circle -->
<circle cx="80" cy="200" r="60" />
</g>
<!-- Fill gaps to form the shape of 'B' -->
<g fill="#8B0000">
<!-- Rectangle to fill the gap on the left -->
<rect x="0" y="80" width="40" height="120" />
</g>
</svg>
</div>
<div class="company-name">Petabi</div>
</div>
</div>
</header>
<section class="hero">
<div class="container">
<h1>Advanced Data Processing & Machine Learning Solutions</h1>
<p>Transforming large-scale data processing and analysis through cutting-edge machine learning techniques
and efficient software solutions.</p>
</div>
</section>
<section class="main-content">
<div class="container">
<div class="features">
<div class="feature">
<h3>Efficient Data Processing</h3>
<p>Our software solutions excel at processing large volumes of data with optimal performance and
resource utilization, ensuring scalability and reliability for enterprise applications.</p>
</div>
<div class="feature">
<h3>Advanced Machine Learning</h3>
<p>We leverage both classical machine learning techniques and state-of-the-art language models to
extract meaningful insights and patterns from complex datasets.</p>
</div>
<div class="feature">
<h3>Cybersecurity Innovation</h3>
<p>Our advanced anomaly detection systems employ sophisticated analysis and clustering techniques to
identify security threats and protect digital assets effectively.</p>
</div>
</div>
</div>
</section>
<section class="github-section">
<div class="container">
<h2>Open Source Contributions</h2>
<p>We believe in giving back to the community by sharing our expertise through open-source projects.</p>
<a href="https://github.com/petabi" class="github-link" target="_blank" rel="noopener noreferrer">Visit Our
GitHub</a>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Petabi, Inc. All rights reserved.</p>
</div>
</footer>
</body>
</html>