Skip to content

Commit 016fda5

Browse files
authored
Merge pull request #60 from product-science/mtvnastya-patch-1
fit everything in 1 page
2 parents f25cf1e + 8d751f8 commit 016fda5

File tree

1 file changed

+33
-13
lines changed

1 file changed

+33
-13
lines changed

docs/index.md

+33-13
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,57 @@
55
.md-main {
66
margin-left: auto;
77
}
8-
</style>
98

9+
/* Styles for mobile screens */
10+
@media (max-width: 768px) {
11+
.products-container {
12+
display: block;
13+
}
14+
.product {
15+
padding: 20px;
16+
}
17+
}
18+
19+
/* Styles for desktop screens */
20+
@media (min-width: 769px) {
21+
.products-container {
22+
display: flex;
23+
}
24+
.product {
25+
flex: 1;
26+
padding: 30px 100px;
27+
}
28+
}
29+
30+
</style>
1031

1132
# Product Science Documentation
1233

13-
[Product Science](https://www.productscience.ai/)
14-
develops tools that enhance software performance and efficiency
15-
by uncovering and addressing inefficiencies at the code level.
16-
We analyzes the code and
17-
actual runtime data to pinpoint performance issues. Our AI enables us
18-
to do it more efficiently by providing unique insights for data
19-
visualizations to help developers to identify the problem
34+
[Product Science](https://www.productscience.ai/)
35+
develops tools that enhance software performance and efficiency
36+
by uncovering and addressing inefficiencies at the code level.
37+
We analyze the code and
38+
actual runtime data to pinpoint performance issues. Our AI enables us
39+
to do it more efficiently by providing unique insights for data
40+
visualizations to help developers identify the problem
2041
right away.
2142

22-
2343
## Explore documentation for our products
2444

25-
<div style="display: flex;">
26-
<div style="flex: 1; padding: 100px;">
45+
<div class="products-container">
46+
<div class="product">
2747
<a href="cloud/overview">
2848
<img src="/images/Cloud.png" alt="Image Description 1" style="width:100%;">
2949
<p style="text-align: center; font-weight: bold;">CodeTuner for Cloud</p>
3050
</a>
3151
</div>
32-
<div style="flex: 1; padding: 100px;">
52+
<div class="product">
3353
<a href="mobile/overview">
3454
<img src="/images/Mobile.png" alt="Image Description 2" style="width:100%;">
3555
<p style="text-align: center; font-weight: bold;">CodeTuner for Mobile</p>
3656
</a>
3757
</div>
38-
<div style="flex: 1; padding: 100px;">
58+
<div class="product">
3959
<a href="ra/overview">
4060
<img src="/images/Regression.png" alt="Image Description 3" style="width:100%;">
4161
<p style="text-align: center; font-weight: bold;">Regression Analysis for Mobile</p>

0 commit comments

Comments
 (0)