diff --git a/src/routes/index.tsx b/src/routes/index.tsx
index fcabc7d..7e24947 100644
--- a/src/routes/index.tsx
+++ b/src/routes/index.tsx
@@ -141,7 +141,6 @@ function Hero() {
-
{/* scroll cue */}
@@ -159,8 +158,150 @@ function Hero() {
);
}
+const rulesData = [
+ {
+ id: "01",
+ title: "Maximize Context Density",
+ subtitle: "Keyword proximity weighting",
+ blurb: "Modern applicant routing systems weigh semantic proximity over raw string matching. Action verbs coupled with absolute metric clusters score up to 3.4x higher pass indices.",
+ code: `package pipeline
+
+// Rule 01: Context Density Weighting
+func EvaluateImpact(bullet string) float64 {
+ verbs := ExtractActionVerbs(bullet)
+ metrics := ParseAbsoluteMetrics(bullet)
+
+ if len(verbs) > 0 && len(metrics) > 0 {
+ return CalculateProximityScore(verbs[0], metrics[0]) * 1.5
+ }
+ return 0.2 // Orphaned string weight
+}`
+ },
+ {
+ id: "02",
+ title: "Term Vector Proximity",
+ subtitle: "Explicit schema taxonomy bindings",
+ blurb: "Avoid unstructured creative section headers. Parsers map documents into standard taxonomy nodes. Using canonical section identifiers ensures guaranteed parsing extraction.",
+ code: `package taxonomy
+
+// Rule 02: Explicit Schema Encodings
+var CanonicalHeaders = map[string]TaxonomyNode{
+ "EXPERIENCE": NodeProfessionalHistory,
+ "PUBLICATIONS": NodeScholarlyResearch,
+ "SKILLS": NodeTechnicalCapabilities,
+}
+
+func ExtractSection(token string) (TaxonomyNode, bool) {
+ // Exact schema bindings pass parsing layers natively
+ node, exists := CanonicalHeaders[strings.ToUpper(token)]
+ return node, exists
+}`
+ },
+ {
+ id: "03",
+ title: "Optical Stream Flattening",
+ subtitle: "Deterministic flow formatting",
+ blurb: "Complex column floats and custom graphical glyphs fail standard optical character recognition streams. Pure, single-column nested flow layouts ensure flawless string normalization.",
+ code: `package textstream
+
+// Rule 03: Flatten Structural Floats
+func NormalizeDocumentStream(layout Node) string {
+ if layout.HasFloat() || layout.IsMultiColumn() {
+ // Warning: Non-linear character stream injection risk
+ return FlattenOpticalStream(layout, StripFormatting)
+ }
+ return DirectBufferRead(layout)
+}`
+ }
+];
+
+function BookDeck() {
+ const [activeTab, setActiveTab] = useState(0);
+ const rule = rulesData[activeTab];
+
+ return (
+ [ FEATURED PUBLICATION ]
+ Distilling algorithmic applicant tracking systems (ATS) into concrete document engineering contracts. Explore interactive execution modules from the book below.
+
+ "{rule.blurb}"
+
+
+ {rule.code}
+
[ ABOUT ]
- I'm fascinated by building systems that behave well under load, intent, and time. - Whether it's a deployment gate that catches bad pushes, a semantic document engine, - or an AI code reviewer — I care about the parts most people skip: the data model, - the failure modes, and the shape of the API. Currently building at Praalak Tech Solutions - and interning as a Research Software Engineer at the Physical Research Laboratory. -
-+ I'm fascinated by building systems that behave well under load, intent, and time. + Whether it's a deployment gate that catches bad pushes, a semantic document engine, + or an AI code reviewer — I care about the parts most people skip: the data model, + the failure modes, and the shape of the API. Currently building at Praalak Tech Solutions + and interning as a Research Software Engineer at the Physical Research Laboratory. +
+{p.tag}
-{p.blurb}
-{p.tag}
+{p.blurb}
+- Building highly concurrent system components, robust deployment gates, and resilient API contracts engineered to perform predictably under load. -
-+ Building highly concurrent system components, robust deployment gates, and resilient API contracts engineered to perform predictably under load. +
+- Type-safe, highly modular interactive user interfaces built with custom design systems, smooth motion layouts, and state predictability. -
-+ Type-safe, highly modular interactive user interfaces built with custom design systems, smooth motion layouts, and state predictability. +
+- Embedding pipelines, LangChain agents, and structured outputs with high-fidelity semantic validation. -
-+ Embedding pipelines, LangChain agents, and structured outputs with high-fidelity semantic validation. +
+- Postgres, Redis, MongoDB, and pgvector optimized for low-latency relational and semantic retrievals. -
-+ Postgres, Redis, MongoDB, and pgvector optimized for low-latency relational and semantic retrievals. +
+- Django REST interfaces, data parsing automation, and rapid exploratory backend pipelines. -
-+ Django REST interfaces, data parsing automation, and rapid exploratory backend pipelines. +
+- Docker containerization, Git governance workflows, and custom active deployment safety gates. -
-+ Docker containerization, Git governance workflows, and custom active deployment safety gates. +
+