2026-04-15 // DevOps // Systems // Nextjs
Architecting the Industrial OS:
The objective was clear: Move beyond the "designer portfolio" and build a command center that mirrors the complexity of the systems I architect daily.
## The Infrastructure Stack
The site is built on a "headless" philosophy. By decoupling the content (Notion) from the deployment (Vercel), I've created a zero-maintenance pipeline.
## Performance over Ornament
Every design decision—from the
## The Fetch Logic
To pull this very text, the system utilizes the 2026-03-11 Notion Protocol. Here is the core of the implementation:
```typescript
export async function getPostContent(pageId: string) {
const notion = new Client({ auth: process.env.NOTION_SECRET });
const response = await notion.dataSources.query({
data_source_id: process.env.NOTION_DATA_SOURCE_ID,
filter: { property: "in_trash", checkbox: { equals: false } }
});
return response;
}
```
System Status: