-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
115 lines (103 loc) · 5.76 KB
/
about.html
File metadata and controls
115 lines (103 loc) · 5.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kapcode - About Us</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="header-container">
<a href="index.html" class="logo">Kapcode.</a>
<nav>
<a href="index.html">Home</a>
<a href="about.html" class="active">About</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<main>
<div class="container">
<h1>About Kapcode</h1>
<div class="about-section">
<h2>Our Story & Vision</h2>
<p>Welcome to Kapcode! We believe that powerful technology should be accessible, straightforward, and open. Our journey started with a simple goal: to design and build our own software that is incredibly easy to use, following core principles of **simplicity and open-source design.** We are purely a product company, focusing our efforts on creating innovative, foundational tools—like efficient Macro automations and comprehensive 2D game templates—and releasing them to the world.</p>
<p>Our focus is entirely on clarity, quality, and community-driven simplicity in the products we create, ensuring users spend less time struggling with complex code and more time building.</p>
</div>
<div class="about-section">
<h2>What We Stand For</h2>
<div class="mission-grid">
<div class="mission-item">
<h3>Simplicity</h3>
<p>We craft intuitive, clean code that is easy to understand, modify, and integrate into your existing projects.</p>
</div>
<div class="mission-item">
<h3>Accessibility</h3>
<p>Our tools and templates are designed for everyone, from absolute beginners taking their first steps to seasoned developers.</p>
</div>
<div class="mission-item">
<h3>Innovation</h3>
<p>We constantly explore new methods to automate and simplify common programming challenges, keeping our projects cutting-edge.</p>
</div>
</div>
</div>
<div class="about-section">
<h2>The Kapcode Difference</h2>
<p>Kapcode is a **software creation studio; we do not engage in consulting or client-specific work.** Our philosophy is to create software that is simple, intuitive, and open—much like the experience of a major design-focused company but with the power and freedom of open source. We provide fully developed, high-quality projects. When you explore our products, whether it’s a ready-to-deploy game engine or a custom automation script, you download the foundational code to use and build upon, with full transparency and control.</p>
<p>We embrace modern development practices, including the use of AI code services (such as Google and Local LLMs). These tools serve as powerful assistants, enabling us to rapidly prototype mock-ups, accelerate development cycles, and continually learn and integrate new programming concepts into our open-source projects.</p>
</div>
</div>
</main>
<footer>
<div class="container">
<ul class="social-icons">
<li>
<a href="https://www.facebook.com/profile.php?id=61581267264151" target="_blank" aria-label="Facebook Profile">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a href="https://x.com/KAPCODE_Apps" target="_blank" aria-label="X (Twitter) Profile">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://github.com/Kapcode/" target="_blank" aria-label="GitHub Profile">
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a href="https://patreon.com/kapcode" target="_blank" aria-label="Patreon Page">
<i class="fab fa-patreon"></i>
</a>
</li>
<li>
<a href="https://www.tiktok.com/@kapcode" target="_blank" aria-label="TikTok Profile">
<i class="fab fa-tiktok"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com/@prospert0" target="_blank" aria-label="YouTube Channel">
<i class="fab fa-youtube"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/kyle-prospert-75037195/" target="_blank" aria-label="LinkedIn Profile">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li>
<a href="https://discord.gg/8y85y5HKbk" target="_blank" aria-label="Discord Profile">
<i class="fab fa-discord"></i>
</a>
</li>
</ul>
<p>© 2025 Kapcode. All rights reserved.</p>
</div>
</footer>
</body>
</html>