|
5 | 5 | .md-main {
|
6 | 6 | margin-left: auto;
|
7 | 7 | }
|
8 |
| -</style> |
9 | 8 |
|
| 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> |
10 | 31 |
|
11 | 32 | # Product Science Documentation
|
12 | 33 |
|
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 |
20 | 41 | right away.
|
21 | 42 |
|
22 |
| - |
23 | 43 | ## Explore documentation for our products
|
24 | 44 |
|
25 |
| -<div style="display: flex;"> |
26 |
| - <div style="flex: 1; padding: 100px;"> |
| 45 | +<div class="products-container"> |
| 46 | + <div class="product"> |
27 | 47 | <a href="cloud/overview">
|
28 | 48 | <img src="/images/Cloud.png" alt="Image Description 1" style="width:100%;">
|
29 | 49 | <p style="text-align: center; font-weight: bold;">CodeTuner for Cloud</p>
|
30 | 50 | </a>
|
31 | 51 | </div>
|
32 |
| - <div style="flex: 1; padding: 100px;"> |
| 52 | + <div class="product"> |
33 | 53 | <a href="mobile/overview">
|
34 | 54 | <img src="/images/Mobile.png" alt="Image Description 2" style="width:100%;">
|
35 | 55 | <p style="text-align: center; font-weight: bold;">CodeTuner for Mobile</p>
|
36 | 56 | </a>
|
37 | 57 | </div>
|
38 |
| - <div style="flex: 1; padding: 100px;"> |
| 58 | + <div class="product"> |
39 | 59 | <a href="ra/overview">
|
40 | 60 | <img src="/images/Regression.png" alt="Image Description 3" style="width:100%;">
|
41 | 61 | <p style="text-align: center; font-weight: bold;">Regression Analysis for Mobile</p>
|
|
0 commit comments