mintris/website/about.html

82 lines
3.8 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Pixel Mint Games</title>
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<h1>Pixel Mint Games</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="games.html">Games</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="about-section">
<div class="container">
<h2>About Pixel Mint Games</h2>
<div class="about-content">
<div class="about-text">
<h3>Our Story</h3>
<p>Pixel Mint Games is an independent game development studio focused on creating engaging, minimalist gaming experiences. Founded in 2023, we're dedicated to crafting games that combine elegant design with compelling gameplay.</p>
<p>Our journey began with a simple idea: games don't need to be complex to be engaging. We believe in the power of minimalist design to create experiences that are both accessible and deeply satisfying.</p>
<h3>Our Philosophy</h3>
<p>At Pixel Mint Games, we're guided by these core principles:</p>
<ul>
<li><strong>Minimalist Design:</strong> We embrace simplicity without sacrificing depth.</li>
<li><strong>Polish Over Features:</strong> We focus on making fewer features work flawlessly rather than implementing many that work adequately.</li>
<li><strong>Player-Centric Development:</strong> We actively listen to player feedback and iterate accordingly.</li>
<li><strong>Platform Optimization:</strong> Our games are tailored to feel native to each platform they're on.</li>
</ul>
<h3>Our Team</h3>
<p>We're a small team of passionate developers, designers, and artists united by our love for creating meaningful gaming experiences. Each member brings unique skills and perspectives to the development process, resulting in games that feel cohesive and thoughtfully crafted.</p>
</div>
<div class="about-image">
<div class="placeholder-image">Team Photo</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<h3>Pixel Mint Games</h3>
</div>
<div class="footer-links">
<ul>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="terms.html">Terms of Service</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
<div class="copyright">
<p>&copy; 2024 Pixel Mint Games. All rights reserved.</p>
</div>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>