Files
landing-page/public/index.html
Lindsay 22378c5b2b
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1m51s
Fixed logo scaling for mobile.
2025-05-09 14:17:46 -07:00

241 lines
7.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.png">
<script async src="https://offen.terakoda.com/script.js" data-account-id="60c771be-b5d7-4b74-9aae-ff4a59f65f0b"></script>
<title>Terakoda</title>
<style>
body {
font-family: sans-serif;
margin: 0;
padding: 0;
background-color: #fdfafc; /* Light Background */
color: #1f2932; /* Dark Text */
line-height: 1.6;
}
.header {
background-color: #fdfafc; /* Light Background */
padding: 20px;
text-align: center;
}
.logo {
width: 100%;
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-wide {
grid-column: 1 / -1; /* Make elements with this class span full width */
}
.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;
}
footer {
background-color: #334155; /* Slightly darker dark background */
color: #fdfafc; /* Light Text */
text-align: center;
padding: 20px;
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="header">
</div>
<div class="hero">
<div class="hero-content">
<img src="HeaderLogo.png" alt="Terakoda Software Systems Logo" class="logo">
<p>Specializing in delivering high-quality and reliable software.</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 service-item-wide">
<h3>Full-Stack System Architecture Design and Planning</h3>
<p>We provide comprehensive expertise in designing robust and scalable system architectures. From initial concept to detailed blueprints, we ensure your technology foundation is solid, efficient, and aligned with your long-term goals. </p>
</div>
<div class="service-item">
<h3>Systems Architecture Expertise</h3>
<p>Our deep understanding of systems architecture principles allows us to design and implement complex systems that are scalable, maintainable, and optimized for performance. </p>
</div>
<div class="service-item">
<h3>Web Applications Programming</h3>
<p>We possess strong proficiency in developing modern and dynamic web applications, leveraging cutting-edge technologies to create engaging and functional user experiences.</p>
</div>
</div>
</div>
<div class="quality">
<h2>Our Commitment to Quality</h2>
<div class="quality-content">
<p>At Terakoda, 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>Experienced project planning and estimation.</li>
<li>Strong Communication and Project Management Skills.</li>
<li>Thoroughness, Quality, and Reliability.</li>
<li>Seamless Remote Collaboration.</li>
</ul>
</div>
</div>
<div class="contact" id="contact">
<h2>Ready to Solve Your Software Problems?</h2>
<p>Contact us today for a consultation and let Terakoda help you overcome your unique software challenges.</p>
<a href="mailto:contact@terakoda.com" class="contact-button">Contact Us</a>
</div>
<footer>
<p>&copy; 2025 Terakoda. All rights reserved.</p>
</footer>
</body>
</html>