Skip to content

Commit 9b2a5a1

Browse files
committed
feat: new about, new primary color
1 parent f8ec547 commit 9b2a5a1

2 files changed

Lines changed: 105 additions & 30 deletions

File tree

index.html

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -67,31 +67,30 @@
6767
<div class="buffer"></div>
6868
<div class="section about">
6969
<a class="anchor" id="about"></a>
70-
<div class="subtitle">About</div>
71-
<div class="">
72-
<p>Stark Tech is a new product and development agency changing how software is built and delivered.</p>
73-
<p>We understand the importance of speed and efficiency to market. Leveraging existing resources, experienced engineers, and AI we deliver exceptional results and get you to market faster than ever!</p>
74-
</div>
75-
</div>
76-
<div class="buffer"></div>
77-
<div class="section about">
78-
<div class="subtitle">Why choose Stark Tech?</div>
79-
<div class="features-grid">
80-
<div class="feature-card">
81-
<h3>Innovative Solutions</h3>
82-
<p>Cutting-edge technology and AI-powered development for unmatched speed and efficiency</p>
83-
</div>
84-
<div class="feature-card">
85-
<h3>Tailored Approach</h3>
86-
<p>Custom solutions designed specifically for your unique business needs</p>
87-
</div>
88-
<div class="feature-card">
89-
<h3>Cost-Effective</h3>
90-
<p>Optimized development processes that deliver maximum value for your investment</p>
91-
</div>
92-
<div class="feature-card">
93-
<h3>Transparent Communication</h3>
94-
<p>Clear, consistent collaboration throughout the entire development process</p>
70+
<div class="about-content">
71+
<div class="about-text">
72+
<h2>Transforming Ideas into Digital Reality</h2>
73+
<p>Stark Tech is a forward-thinking product and development agency that's revolutionizing the software development landscape. With our unique blend of human expertise and cutting-edge AI technology, we're setting new standards in digital innovation.</p>
74+
75+
<div class="about-highlights">
76+
<div class="highlight">
77+
<span class="highlight-icon">🚀</span>
78+
<h3>Speed to Market</h3>
79+
<p>We accelerate your journey from concept to launch, ensuring you stay ahead of the competition.</p>
80+
</div>
81+
82+
<div class="highlight">
83+
<span class="highlight-icon">💡</span>
84+
<h3>Innovation First</h3>
85+
<p>Leveraging AI and advanced technologies to solve complex challenges with elegant solutions.</p>
86+
</div>
87+
88+
<div class="highlight">
89+
<span class="highlight-icon">👥</span>
90+
<h3>Expert Team</h3>
91+
<p>Our experienced engineers bring deep expertise across the full development stack.</p>
92+
</div>
93+
</div>
9594
</div>
9695
</div>
9796
</div>
@@ -122,7 +121,7 @@ <h3>Transparent Communication</h3>
122121
<a href="mailto:michael@starktech.dev" class="contact-button" title="Email">
123122
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
124123
<path d="M0 0h24v24H0z" fill="none"/>
125-
<path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z" fill="#3F84E5"/>
124+
<path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z" fill="#003049"/>
126125
</svg>
127126
michael@starktech.dev
128127
</a>

src/main.css

Lines changed: 80 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ body {
44
margin: auto;
55
font-family: 'Roboto', sans-serif;
66
font-size: 18px;
7-
color: #3F84E5;
7+
color: #003049;
88
overflow: hidden;
99
padding: 0px;
1010
}
@@ -124,7 +124,7 @@ a.anchor {
124124
}
125125

126126
.scroll-indicator svg {
127-
fill: #3F84E5;
127+
fill: #003049;
128128
height: 30px;
129129
opacity: 0;
130130
animation-name: fade-in-out;
@@ -280,7 +280,7 @@ a.anchor {
280280
}
281281

282282
.feature-card h3 {
283-
color: #007bff;
283+
color: #003049;
284284
margin-bottom: 1rem;
285285
}
286286

@@ -302,7 +302,7 @@ a.anchor {
302302
align-items: center;
303303
gap: 0.5rem;
304304
padding: 0.75rem 1.5rem;
305-
color: #3F84E5;
305+
color: #003049;
306306
text-decoration: none;
307307
border-radius: 5px;
308308
transition: background-color 0.3s ease;
@@ -318,3 +318,79 @@ a.anchor {
318318
grid-template-columns: 1fr;
319319
}
320320
}
321+
322+
/* About Section Styles */
323+
.about-content {
324+
max-width: 1200px;
325+
margin: 0 auto;
326+
padding: 2rem 1rem;
327+
}
328+
329+
.about-text {
330+
text-align: left;
331+
}
332+
333+
.about-text h2 {
334+
color: #003049;
335+
font-size: 2rem;
336+
margin-bottom: 1.5rem;
337+
text-align: center;
338+
}
339+
340+
.about-text p {
341+
font-size: 1.1rem;
342+
line-height: 1.6;
343+
margin-bottom: 2rem;
344+
color: #305252;
345+
}
346+
347+
.about-highlights {
348+
display: grid;
349+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
350+
gap: 2rem;
351+
margin-top: 3rem;
352+
}
353+
354+
.highlight {
355+
padding: 1.5rem;
356+
background-color: rgba(63, 132, 229, 0.05);
357+
border-radius: 10px;
358+
transition: transform 0.3s ease;
359+
}
360+
361+
.highlight:hover {
362+
transform: translateY(-5px);
363+
}
364+
365+
.highlight-icon {
366+
font-size: 2rem;
367+
display: block;
368+
margin-bottom: 1rem;
369+
}
370+
371+
.highlight h3 {
372+
color: #003049;
373+
margin-bottom: 0.5rem;
374+
font-size: 1.25rem;
375+
}
376+
377+
.highlight p {
378+
font-size: 1rem;
379+
margin-bottom: 0;
380+
color: #305252;
381+
}
382+
383+
/* Responsive adjustments */
384+
@media (max-width: 768px) {
385+
.about-text h2 {
386+
font-size: 1.5rem;
387+
}
388+
389+
.about-highlights {
390+
grid-template-columns: 1fr;
391+
}
392+
393+
.highlight {
394+
text-align: center;
395+
}
396+
}

0 commit comments

Comments
 (0)