194 lines
5.6 KiB
HTML
194 lines
5.6 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">
|
|
|
|
<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=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
|
|
<style>
|
|
/* ── Tinqs Studio brand — index styles ── */
|
|
|
|
:root {
|
|
/* Studio near-black base */
|
|
--c-bg: #0B0C0E;
|
|
--c-bg-raised: #15171A;
|
|
/* Foreground */
|
|
--c-fg: #ECEEF1;
|
|
--c-muted: #8A95A3;
|
|
/* Family accents */
|
|
--c-lime: #B6FF3C;
|
|
--c-violet: #7C5CFF;
|
|
/* Borders */
|
|
--c-border: rgba(255,255,255,.07);
|
|
--c-border-strong: rgba(255,255,255,.12);
|
|
}
|
|
|
|
*, *::before, *::after { box-sizing: border-box; }
|
|
|
|
html { background: var(--c-bg); }
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: var(--c-bg);
|
|
color: var(--c-fg);
|
|
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.blog-header {
|
|
background: var(--c-bg);
|
|
}
|
|
|
|
.blog-list {
|
|
background: var(--c-bg);
|
|
}
|
|
|
|
/* ── Section label kicker ── */
|
|
.section-label {
|
|
display: inline-block;
|
|
font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
|
|
font-size: 0.72rem;
|
|
letter-spacing: 0.18em;
|
|
text-transform: uppercase;
|
|
color: var(--c-muted);
|
|
border: 1px solid var(--c-border);
|
|
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 — lime → violet ── */
|
|
.blog-header__title {
|
|
font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
|
|
background: linear-gradient(90deg, var(--c-lime), var(--c-violet));
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
color: transparent;
|
|
font-weight: 700;
|
|
font-size: 2.4rem;
|
|
line-height: 1.2;
|
|
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: var(--c-bg-raised);
|
|
border: 1px solid var(--c-border);
|
|
border-radius: 8px;
|
|
padding: 20px 24px;
|
|
transition: border-color 0.2s;
|
|
}
|
|
|
|
.blog-card:hover {
|
|
border-color: var(--c-lime);
|
|
}
|
|
|
|
/* ── Date pill ── */
|
|
.blog-card__date {
|
|
display: inline-block;
|
|
font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
|
|
font-size: 0.72rem;
|
|
letter-spacing: 0.18em;
|
|
text-transform: uppercase;
|
|
color: var(--c-muted);
|
|
border: 1px solid var(--c-border);
|
|
border-radius: 999px;
|
|
padding: 4px 14px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.blog-card__title {
|
|
font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
|
|
font-weight: 600;
|
|
color: var(--c-fg);
|
|
font-size: 1.2rem;
|
|
line-height: 1.3;
|
|
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-lime);
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.blog-card:hover .blog-card__read {
|
|
color: var(--c-violet);
|
|
}
|
|
</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>
|