This repository contains the source markdown files for blogs and case studies used on the Nom website.
content/blogs/: Individual blog posts in.mdformat.content/case-studies/: Business case studies in.mdformat.
Use kebab-case for filenames: my-awesome-blog-post.md.
---
title: "Full Title of the Blog"
excerpt: "A 1-2 sentence summary for the listing page."
date: "2026-05-14"
author: "Author Name"
tags: ["AI", "Technology", "Business"]
status: "published"
source: "https://optional-original-source.com"
coverImage: "/path/to/image.jpg" # Optional: URL for the list view image
ogImage: "/path/to/og.jpg" # Optional: URL for social sharing
---- Do NOT include an
# H1title in the body. The frontend automatically renders the title from the frontmatter. - Use
##and###for subheadings. - Keep the tone professional yet engaging.
- End with a call to action or a "Resources" section.
Use kebab-case for filenames: customer-success-story.md.
---
title: "Catchy Case Study Title"
date: "2026-05-14" # Format: YYYY-MM-DD
author: "Author Name"
tags: ["Solution", "Industry", "Outcome"]
status: "published" # Use "published" or "draft"
industry: "INDUSTRY NAME" # Typically UPPERCASE (e.g., FINANCE)
subtitle: "Optional secondary headline"
description: "A compelling summary of the problem and solution."
stat1_value: "80%"
stat1_label: "REDUCTION IN COST" # UPPERCASE recommended
stat2_value: "2.5x"
stat2_label: "FASTER DELIVERY"
stat3_value: "GPT-4o" # Note: frontend normalizes this to GPT-4.o
stat3_label: "LLM USED"
---To maintain consistency across the site, case studies may follow this section hierarchy:
Important
Do NOT include an # H1 title in the body. The page header already renders the title from the frontmatter. Start your content with ## Context.
- Context: Background on the client and their situation.
- The Problem: Specific pain points and challenges being addressed.
- Our Approach: The strategic thinking and methodology applied.
- What We Engineered: The specific technical solutions or features implemented.
- Architecture and Workflow: Technical stack, models used, and the operational flow.
- Business Impact: Hard numbers and quantifiable success metrics.
- Why It Worked: Rationale for why this specific solution succeeded.
- Risks Mitigated: How security, privacy, or accuracy risks were handled.
- Client Voice: A direct testimonial from the client (use
> Blockquote).
The website uses a modern rendering pipeline that supports several advanced blocks:
Standard markdown images are automatically optimized using Next.js Image:
- Pro-tip: Drag-and-drop images into the GitHub editor to host them easily.
Mathematical formulas are rendered using KaTeX.
- Inline:
$E = mc^2$ - Block:
$$ I = \int_{0}^{\infty} e^{-x^2} dx $$
Full support for GitHub Flavored Markdown, including:
- Tables (with alignment)
- Task Lists (
- [x] task) - Strikethrough (
~~text~~) - Autolinks
Beautiful highlighting for 100+ languages using Shiki.
const hello = "world";Architecture diagrams and flowcharts are supported via Mermaid.js.
- Usage: Wrap your mermaid code in a triple-backtick block with the
mermaidlanguage tag.```mermaid graph TD; A-->B; A-->C; B-->D; C-->D;
All headings (##, ###) automatically generate IDs and hover-anchors for deep linking.
- Images: If adding images, drag-and-drop them in github file editor or use external URLs.
- Status: Set
status: "draft"if you are not ready for the post to go live. - Formatting: Use standard Markdown. Avoid complex HTML where possible.