Initial Commit

This commit is contained in:
2025-04-23 15:59:34 -07:00
parent 4228471b35
commit e155bba8b8
3 changed files with 229 additions and 0 deletions

BIN
TerakodaCard.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
TerakodaLogo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

229
index.html Normal file
View File

@@ -0,0 +1,229 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terakoda Software Systems - Bespoke Software Solutions</title>
<style>
body {
font-family: sans-serif;
margin: 0;
padding: 0;
background-color: #ececec;
color: #2a2f61;
line-height: 1.6;
}
.header {
background-color: #ececec;
padding: 20px;
text-align: center;
}
.logo {
max-width: 400px; /* Adjust as needed */
height: auto;
}
.hero {
background-color: #2a2f61;
color: #ececec;
padding: 30px 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: #cba269;
color: #2a2f61;
padding: 15px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #b8915a;
}
.services {
padding: 60px 20px;
text-align: center;
}
.services h2 {
font-size: 2em;
color: #2a2f61;
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: #cba269;
margin-top: 0;
margin-bottom: 10px;
}
.quality {
background-color: #f9f9f9;
padding: 60px 20px;
text-align: center;
}
.quality h2 {
font-size: 2em;
color: #2a2f61;
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: #cba269;
position: absolute;
left: 0;
}
.contact {
background-color: #2a2f61;
color: #ececec;
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: #cba269;
color: #2a2f61;
padding: 15px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.contact-button:hover {
background-color: #b8915a;
}
footer {
background-color: #333;
color: #ececec;
text-align: center;
padding: 20px;
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="header">
<img src="TerakodaLogo.png" alt="Terakoda Software Systems Logo" class="logo">
</div>
<div class="hero">
<div class="hero-content">
<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:contact@terakoda.com" class="contact-button">Contact Us</a>
</div>
<footer>
<p>&copy; 2025 Terakoda Software Systems. All rights reserved.</p>
</footer>
</body>
</html>