212 lines
6.2 KiB
Plaintext
212 lines
6.2 KiB
Plaintext
---
|
|
import BaseHead from '../components/BaseHead.astro';
|
|
import Header from '../components/Header.astro';
|
|
import Footer from '../components/Footer.astro';
|
|
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
|
|
</head>
|
|
<body>
|
|
<Header />
|
|
<main>
|
|
<div class="hero">
|
|
<div class="hero-content">
|
|
<img src="HeaderLogo.png" alt="Terakoda Software Systems Logo" class="logo">
|
|
<p>Solving Your Unique Software Challenges with Precision and Quality</p>
|
|
<a href="#contact" class="cta-button">Get a Consultation</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="services">
|
|
<h2>Our Expertise</h2>
|
|
<div class="services-content">
|
|
<div class="service-item">
|
|
<h3>Custom Software Solutions</h3>
|
|
<p>We specialize in providing bespoke software solutions for those critical, isolated challenges that can impact your operations and growth.</p>
|
|
</div>
|
|
<div class="service-item">
|
|
<h3>Engineering Challenges</h3>
|
|
<p>Our experienced developers can tackle complex engineering hurdles that fall outside your team's immediate expertise.</p>
|
|
</div>
|
|
<div class="service-item">
|
|
<h3>Organizational Challenges</h3>
|
|
<p>We offer solutions to organizational challenges that can be addressed through tailored software applications.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="quality">
|
|
<h2>Our Commitment to Quality</h2>
|
|
<div class="quality-content">
|
|
<p>At Terakoda Software Systems, we are dedicated to delivering solutions that meet the highest standards of quality and reliability.</p>
|
|
<ul class="quality-list">
|
|
<li>Expert Analysis to understand your specific needs.</li>
|
|
<li>Custom-Crafted Solutions designed for optimal performance.</li>
|
|
<li>Uncompromising Quality through rigorous development standards.</li>
|
|
<li>Clear Communication throughout the entire process.</li>
|
|
<li>Long-Term Value ensuring lasting solutions.</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="contact" id="contact">
|
|
<h2>Ready to Solve Your Software Puzzle?</h2>
|
|
<p>Contact us today for a consultation and let Terakoda Software Systems help you overcome your unique software challenges with precision and excellence.</p>
|
|
<a href="mailto:your-email@example.com" class="contact-button">Contact Us</a>
|
|
</div>
|
|
</main>
|
|
<Footer />
|
|
</body>
|
|
<style>
|
|
.logo {
|
|
max-width: 400px; /* Adjust as needed */
|
|
height: auto;
|
|
}
|
|
|
|
.hero {
|
|
background-color: #1f2932; /* Dark Background */
|
|
color: #fdfafc; /* Light Text */
|
|
padding: 80px 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-content {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 2.5em;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.2em;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-block;
|
|
background-color: #2EB670; /* Accent Color */
|
|
color: #1f2932; /* Dark Text */
|
|
padding: 15px 30px;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
font-weight: bold;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
background-color: #269e61;
|
|
}
|
|
|
|
.services {
|
|
padding: 60px 20px;
|
|
text-align: center;
|
|
background-color: #f9f7f7; /* Slightly darker light background for contrast */
|
|
}
|
|
|
|
.services h2 {
|
|
font-size: 2em;
|
|
color: #1f2932; /* Dark Text */
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.services-content {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
text-align: left;
|
|
}
|
|
|
|
.service-item {
|
|
background-color: white;
|
|
padding: 25px;
|
|
border-radius: 5px;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.service-item h3 {
|
|
color: #2EB670; /* Accent Color */
|
|
margin-top: 0;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.quality {
|
|
background-color: #fdfafc; /* Light Background */
|
|
padding: 60px 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.quality h2 {
|
|
font-size: 2em;
|
|
color: #1f2932; /* Dark Text */
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.quality-content {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
text-align: left;
|
|
}
|
|
|
|
.quality-list {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.quality-list li {
|
|
margin-bottom: 15px;
|
|
padding-left: 25px;
|
|
position: relative;
|
|
}
|
|
|
|
.quality-list li::before {
|
|
content: "\2713"; /* Checkmark */
|
|
color: #2EB670; /* Accent Color */
|
|
position: absolute;
|
|
left: 0;
|
|
}
|
|
|
|
.contact {
|
|
background-color: #1f2932; /* Dark Background */
|
|
color: #fdfafc; /* Light Text */
|
|
padding: 60px 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.contact h2 {
|
|
font-size: 2em;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.contact p {
|
|
font-size: 1.1em;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.contact-button {
|
|
display: inline-block;
|
|
background-color: #2EB670; /* Accent Color */
|
|
color: #1f2932; /* Dark Text */
|
|
padding: 15px 30px;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
font-weight: bold;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.contact-button:hover {
|
|
background-color: #269e61;
|
|
}
|
|
|
|
|
|
</style>
|
|
</html>
|