diff --git a/src/data/blogPosts.json b/src/data/blogPosts.json index df4d64e..a5d4355 100644 --- a/src/data/blogPosts.json +++ b/src/data/blogPosts.json @@ -1,4 +1,20 @@ [ + { + "slug": "zzz-spec-test", + "title": "Spec Verification Post", + "description": "Up-to-spec verification of FAQ, crosspost, optimistic locking behaviors end to end.", + "date": "Jul 7", + "year": 2026, + "category": "Blog", + "tags": [ + "test" + ], + "banner": "banners/zzz-spec-test.webp", + "iso_date": "2026-07-07", + "crosspost": { + "devto": true + } + }, { "slug": "build-an-agent-app", "title": "Build an Agent App: Turn Your API Into an Installable Pilot App", diff --git a/src/pages/blog/zzz-spec-test.astro b/src/pages/blog/zzz-spec-test.astro new file mode 100644 index 0000000..d951edb --- /dev/null +++ b/src/pages/blog/zzz-spec-test.astro @@ -0,0 +1,27 @@ +--- +import BlogLayout from '../../layouts/BlogLayout.astro'; + +const bodyContent = `

Body v2 edited.

`; + +const faqItems = [ + { + question: "First?", + answer: "One.", + }, + { + question: "Second?", + answer: "Two.", + }, +]; +--- + + +