91 lines
4.1 KiB
HTML
91 lines
4.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Bellsworne Tech</title>
|
|
<link rel="icon" href="res/img/logo.svg">
|
|
<link rel="stylesheet" href="res/css/main.css">
|
|
|
|
<script>
|
|
function toggleMenu() {
|
|
var menu = document.getElementById('nav-menu');
|
|
menu.classList.toggle('show');
|
|
console.log('Menu toggled');
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<nav id="main-nav">
|
|
<div id="nav-logo">
|
|
<img src="res/img/logo.png" alt="Bellsworne Tech Logo">
|
|
</div>
|
|
<div style="align-self: flex-start" id="hamburger-icon" onclick="toggleMenu()">
|
|
☰
|
|
</div>
|
|
<ul id="nav-menu">
|
|
<li><a href="#">Home</a></li>
|
|
<li><a href="#about">About</a></li>
|
|
<li><a href="#services">Services</a></li>
|
|
<li><a href="#products">Products</a></li>
|
|
<li><a href="#contact">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<header>
|
|
<div class="header-left">
|
|
<h1>Welcome to Bellsworne Tech!</h1>
|
|
<p>We are a dedicated team of software engineers committed to developing high-quality software solutions. Our portfolio includes both free and open-source software, as well as professional, source-available tools. We believe in the power of open-source software to drive innovation and collaboration, while also offering premium tools for professional use.</p>
|
|
</div>
|
|
<div class="header-right">
|
|
<div id="header-img">
|
|
<img src="res/img/logo.png" alt="Bellsworne Tech Logo">
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div id="content">
|
|
|
|
<div class="content-full-width" id="about">
|
|
<h1>About Us</h1>
|
|
<p>Our team has over 5 years of industry experience in creating and managing software applications, websites, and more. We are passionate about delivering top-notch software solutions that meet the unique needs of our clients.</p>
|
|
</div>
|
|
|
|
<div class="content-full-width" id="services">
|
|
<h1>Services</h1>
|
|
<p>We offer a range of services including custom software application development and bespoke website creation. Our expertise ensures that we can deliver tailored solutions that help your business thrive in the digital landscape.</p>
|
|
<h2>What we offer:</h2>
|
|
<ul>
|
|
<li>Website design and development - <a href="https://forms.gle/DkMftohQZyrWFNyn6">Request a quote</a></li>
|
|
<li>Custom software solutions - Coming soon</li>
|
|
<li>Mobile app development - Coming soon</li>
|
|
<li>Web app development - Coming soon</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="content-full-width" id="products">
|
|
<h1>Products</h1>
|
|
<h2>Cogwheel</h2>
|
|
<p>Cogwheel is an open source suite of software/game development tools written in C# for the .NET Framework. It is still early in development, but currently features a robust Command system
|
|
that lets easily prototype, debug, and develop software or games.</p>
|
|
<ul>
|
|
<li><a href="https://git.bellsworne.tech/Bellsworne/Cogwheel/packages">NuGet Package</a></li>
|
|
<li><a href="https://git.bellsworne.tech/Bellsworne/Cogwheel">Source code on Git</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="content-full-width" id="contact">
|
|
<h1>Contact Us</h1>
|
|
<p>For more information about our services or products, please contact us using the form below:</p>
|
|
<iframe style="background-color: #dedede" src="https://docs.google.com/forms/d/e/1FAIpQLSfDf3ip-tSFK_aePpT7J7NFvprgZksSthsNQ99PgJ2UiSwLUw/viewform?embedded=true"
|
|
width="640" height="1051" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>©2025 Bellsworne LLC | <a href="https://bellsworne.com">Bellsworne</a> | <a href="#">Team portal</a></p>
|
|
</footer>
|
|
</body>
|
|
</html> |