Add files via upload
This commit is contained in:
parent
f066ac502a
commit
084d814602
63
index.html
63
index.html
|
|
@ -8,7 +8,7 @@
|
|||
<meta name="author" content="ObliStudios">
|
||||
<meta property="og:title" content="Obli.Studios – Indie Games & Tools">
|
||||
<meta property="og:description" content="Explore Shardwalker and Obli.ServerManager – tactical games and server tools from a solo dev studio.">
|
||||
<meta property="og:image" content="img\logo.png">
|
||||
<meta property="og:image" content="img/logo.png">
|
||||
<meta property="og:url" content="https://www.oblistudios.com">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<title>Obli.Studios</title>
|
||||
|
|
@ -29,6 +29,27 @@
|
|||
.btn-roadmap:hover {
|
||||
background: #0088cc;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 40px;
|
||||
}
|
||||
|
||||
.feature-grid {
|
||||
display: flex;
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.feature-box {
|
||||
flex: 1;
|
||||
background: #f5f5f5;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
form input, form button {
|
||||
padding: 10px;
|
||||
margin: 5px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
|
@ -39,10 +60,48 @@
|
|||
<a href="http://roadmap.oblistudios.com" class="btn-roadmap">🛠 View Roadmap</a>
|
||||
</nav>
|
||||
|
||||
|
||||
<main class="container">
|
||||
<h1>Welcome to Obli.Studios</h1>
|
||||
<p>Home of Shardwalker and the Obli.ServerManager platform.</p>
|
||||
|
||||
<section class="hero">
|
||||
<img src="img/hero-banner.jpg" alt="Shardwalker Artwork" style="width:100%;">
|
||||
<h2>Discover the Worlds of Shardwalker</h2>
|
||||
<p>A tactical PvP RPG experience with deep solo campaigns and strategic combat.</p>
|
||||
<a href="https://www.oblistudios.com/shardwalker.html" class="btn-roadmap">Learn More</a>
|
||||
</section>
|
||||
|
||||
<section id="about">
|
||||
<h2>About Obli.Studios</h2>
|
||||
<p>Obli.Studios is an independent game and tool development studio focused on delivering immersive tactical RPG experiences and powerful backend tools for gamers and server administrators alike. Founded by a solo developer, we believe in empowering players with both gameplay and control.</p>
|
||||
</section>
|
||||
|
||||
<section id="features">
|
||||
<h2>Our Creations</h2>
|
||||
<div class="feature-grid">
|
||||
<div class="feature-box">
|
||||
<h3>⚔️ Shardwalker</h3>
|
||||
<p>A competitive action-RPG that includes attunement powers and shard-switching mechanics.</p>
|
||||
</div>
|
||||
<div class="feature-box">
|
||||
<h3>🛠 Obli.ServerManager</h3>
|
||||
<p>A lightweight server manager for SteamCMD-based games. Easily deploy, monitor, and control game servers from any IOS device.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="contact">
|
||||
<h2>Connect with Us</h2>
|
||||
<p>Follow us on social media or drop us a message:</p>
|
||||
<ul>
|
||||
<li><a href="https://twitter.com/obli_studios">🐦 Twitter</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section id="tech">
|
||||
<h2>Powered By</h2>
|
||||
<p>Our games and tools are built using Unity, C#, .NET 9.0, Swift.</p>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
|
|
|||
Loading…
Reference in New Issue