174 lines
4.9 KiB
HTML
174 lines
4.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Blog — Tinqs Studio</title>
|
|
<meta name="description" content="Dev logs, behind-the-scenes, and lessons learned from building games, tools, and platform infrastructure at Tinqs Studio.">
|
|
<meta name="robots" content="index, follow">
|
|
<link rel="canonical" href="https://www.tinqs.com/blog/">
|
|
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="https://www.tinqs.com/blog/">
|
|
<meta property="og:title" content="Blog — Tinqs Studio">
|
|
<meta property="og:description" content="Dev logs, behind-the-scenes, and lessons learned from building games, tools, and platform at Tinqs Studio.">
|
|
<meta property="og:image" content="https://www.tinqs.com/img/og-cover.jpg">
|
|
|
|
<style>
|
|
/* ── Self-contained index styles (Studio provides site chrome) ── */
|
|
|
|
:root {
|
|
--c-accent: #c9935a;
|
|
--c-accent-l: #d4a87c;
|
|
--c-bg: #0d1117;
|
|
--c-text: #e6edf3;
|
|
--c-muted: #9aa7b4;
|
|
--c-border: #2a3340;
|
|
--c-blue: #38bdf8;
|
|
--c-purple: #a855f7;
|
|
--c-gold: #f59e0b;
|
|
}
|
|
|
|
*, *::before, *::after { box-sizing: border-box; }
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: transparent;
|
|
color: var(--c-text);
|
|
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
line-height: 1.6;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
/* ── Section label kicker ── */
|
|
.section-label {
|
|
display: inline-block;
|
|
font-family: ui-monospace, 'SF Mono', 'Cascadia Code', Consolas, monospace;
|
|
font-size: 0.72rem;
|
|
letter-spacing: 0.22em;
|
|
text-transform: uppercase;
|
|
color: var(--c-blue);
|
|
border: 1px solid rgba(147, 140, 129, 0.25);
|
|
border-radius: 999px;
|
|
padding: 4px 14px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
/* ── Blog header ── */
|
|
.blog-header {
|
|
max-width: 720px;
|
|
margin: 0 auto;
|
|
padding: 60px 24px 32px;
|
|
}
|
|
|
|
/* ── Gradient index title ── */
|
|
.blog-header__title {
|
|
background: linear-gradient(90deg, #c9935a, #f59e0b 40%, #38bdf8);
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
color: transparent;
|
|
font-weight: 800;
|
|
font-size: 2.4rem;
|
|
line-height: 1.25;
|
|
margin: 0 0 12px;
|
|
}
|
|
|
|
.blog-header__subtitle {
|
|
color: var(--c-muted);
|
|
font-size: 1.05rem;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
}
|
|
|
|
/* ── Blog list ── */
|
|
.blog-list {
|
|
max-width: 720px;
|
|
margin: 0 auto;
|
|
padding: 0 24px 60px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
/* ── Blog card ── */
|
|
.blog-card {
|
|
display: block;
|
|
text-decoration: none;
|
|
background: #0c1119;
|
|
border: 1px solid var(--c-border);
|
|
border-radius: 12px;
|
|
padding: 20px 24px;
|
|
transition: border-color 0.2s;
|
|
}
|
|
|
|
.blog-card:hover {
|
|
border-color: var(--c-accent);
|
|
}
|
|
|
|
/* ── Date pill ── */
|
|
.blog-card__date {
|
|
display: inline-block;
|
|
font-family: ui-monospace, 'SF Mono', 'Cascadia Code', Consolas, monospace;
|
|
font-size: 0.72rem;
|
|
letter-spacing: 0.22em;
|
|
text-transform: uppercase;
|
|
color: var(--c-blue);
|
|
border: 1px solid rgba(147, 140, 129, 0.25);
|
|
border-radius: 999px;
|
|
padding: 4px 14px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.blog-card__title {
|
|
color: var(--c-text);
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
line-height: 1.35;
|
|
margin: 0 0 8px;
|
|
}
|
|
|
|
.blog-card__excerpt {
|
|
color: var(--c-muted);
|
|
font-size: 0.92rem;
|
|
line-height: 1.55;
|
|
margin: 0 0 12px;
|
|
}
|
|
|
|
/* ── Read link accent ── */
|
|
.blog-card__read {
|
|
color: var(--c-blue);
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.blog-card:hover .blog-card__read {
|
|
color: var(--c-purple);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- BLOG HEADER -->
|
|
<div class="blog-header">
|
|
<span class="section-label">Dev Log</span>
|
|
<h1 class="blog-header__title">From the Workshop</h1>
|
|
<p class="blog-header__subtitle">Behind-the-scenes notes on building games, forging tools, and running a small studio that punches above its weight.</p>
|
|
</div>
|
|
|
|
<!-- BLOG LIST -->
|
|
<div class="blog-list">
|
|
<!-- hand-authored HTML posts (not from build.js) -->
|
|
<a href="pi-flow-native-brain" class="blog-card">
|
|
<span class="blog-card__date">4 June 2026</span>
|
|
<h2 class="blog-card__title">How Pi Agents Build, Test, and Ship Game Code with Oracle-Backed Flows</h2>
|
|
<p class="blog-card__excerpt">A flow spawns, agents fan out through five oracle gates, the game-builder fixes 19 red tests while vision judges check the live game — and it all runs as one autonomous flow.</p>
|
|
<span class="blog-card__read">Read →</span>
|
|
</a>
|
|
{{CARDS}}
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|