2025-01-14 13:40:43 -08:00
<!DOCTYPE html>
2024-11-24 13:28:06 -08:00
< html lang = "en" >
< head >
2025-01-14 13:40:43 -08:00
< meta charset = "UTF-8" >
2024-11-24 13:28:06 -08:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< script src = "/js/jquery.js" > < / script >
< link rel = "stylesheet" href = "/css/style.css" >
< link rel = "stylesheet" href = "/css/colormaticstudios.css" >
< link rel = "icon" type = "image/svg" href = "/img/colormatic_logo.svg" >
< title > Colormatic Studios< / title >
< script >
$(document).ready(function(){
2025-01-14 13:40:43 -08:00
$("#navbar").load("/component/navbar.html");
$("#footer").load("/component/footer.html");
});
2024-11-24 13:28:06 -08:00
< / script >
< / head >
< body >
2024-12-31 23:09:19 -08:00
< div id = "particle-container" > < / div >
< script src = "/js/bg.js" > < / script >
2024-11-24 13:28:06 -08:00
< header id = "navbar" > < / header >
< main >
2025-01-14 20:00:36 -08:00
< div class = "cs-title" > < h1 > Colormatic Studios< / h1 > < / div >
2024-11-24 13:28:06 -08:00
< div class = "project-grid-container" >
2025-01-02 14:23:57 -08:00
< div class = "project-grid-box panel" >
2025-01-04 19:21:10 -08:00
< h1 > < a href = "https://git.colormatic.org/ColormaticStudios/quality-godot-first-person" target = "_blank" rel = "noopener noreferrer" > Quality First Person Controller< / a > < / h1 >
2024-11-24 13:28:06 -08:00
< div class = "project-grid-box-contents" >
2025-01-14 20:00:36 -08:00
< img src = "https://git.colormatic.org/ColormaticStudios/quality-godot-first-person/raw/branch/main/icon.svg" alt = "First Person Logo" / >
2024-11-26 20:10:55 -08:00
< p > An actually good first person controller for the Godot Engine.< / p >
2024-11-24 13:28:06 -08:00
< / div >
< / div >
2025-01-02 14:23:57 -08:00
< div class = "project-grid-box panel" >
2024-11-26 20:10:55 -08:00
< h1 > A Silly Game< / h1 >
2024-11-24 13:28:06 -08:00
< div class = "project-grid-box-contents" >
2025-01-14 20:00:36 -08:00
< img src = "/studios/img/hatcat.webp" alt = "HatCat" / >
2024-11-26 20:10:55 -08:00
< p > This is a silly little game project to get us started.< / p >
2024-11-24 13:28:06 -08:00
< / div >
< / div >
2025-01-02 14:23:57 -08:00
< div class = "project-grid-box panel" >
2024-11-26 20:10:55 -08:00
< h1 > ColorQuest< / h1 >
2024-11-24 13:28:06 -08:00
< div class = "project-grid-box-contents" >
2025-01-14 20:00:36 -08:00
< img src = "/studios/img/colorquest.png" class = "pixelart" alt = "ColorQuest" / >
2024-11-26 20:10:55 -08:00
< p > A simple MMORPG in your browser.< / p >
2024-11-24 13:28:06 -08:00
< / div >
< / div >
< / div >
2024-11-26 14:51:24 -08:00
2025-01-02 14:23:57 -08:00
< div class = "hero panel" >
2024-11-26 14:51:24 -08:00
< h1 > Links:< / h1 >
< div class = "double-linktree" >
< ul class = "linktree" >
< li > < a href = "https://mastodon.social/@colormaticstudios" target = "_blank" rel = "noopener noreferrer" > Mastodon< / a > < / li >
< li > < a href = "https://www.instagram.com/colormaticstudios/" target = "_blank" rel = "noopener noreferrer" > Instagram< / a > < / li >
< li > < a href = "https://www.youtube.com/@colormaticstudios" target = "_blank" rel = "noopener noreferrer" > Youtube< / a > < / li >
< / ul >
< ul class = "linktree" >
< li > < a href = "https://github.com/ColormaticStudios" target = "_blank" rel = "noopener noreferrer" > GitHub< / a > < / li >
< li > < a href = "https://bsky.app/profile/colormaticstudios.bsky.social" target = "_blank" rel = "noopener noreferrer" > Bluesky< / a > < / li >
< li > < a href = "https://x.com/ColormaticStudy" target = "_blank" rel = "noopener noreferrer" > X/Twitter< / a > < / li >
< / ul >
< / div >
< / div >
2024-11-24 13:28:06 -08:00
< / main >
2024-11-26 20:10:55 -08:00
< div style = "margin-top: 5%;" > < / div > <!-- Separator -->
2024-11-24 13:28:06 -08:00
< footer id = "footer" > < / footer >
< / body >
< / html >