Back to articles
I Built a Blog with 31 Articles and AI-Generated Cover Images in One Day — Here's How

I Built a Blog with 31 Articles and AI-Generated Cover Images in One Day — Here's How

via Dev.to WebdevTAMSIV

I'm building TAMSIV , a voice-powered task manager, solo. After 670+ commits over 6 months, I had a landing page, a web dashboard, and... zero blog. Google didn't know I existed. So I decided to fix that. In one day. The Problem My site had no indexable content. No articles. No FAQ. No user guide worth the name. Every piece of marketing I'd done (50+ posts across Discord, LinkedIn, Facebook, dev.to) lived on other people's platforms. Nothing on my own domain. The Solution: 31 Articles, AI Cover Images, 6 Languages Here's what I built: Blog Architecture (Next.js) The blog lives in src/lib/blog.ts — all content is inline HTML, no database. Each article has metadata (title, slug, date, tag, excerpt, cover image) and content in HTML. // blog.ts structure export const articles : BlogArticle [] = [ { slug : ' voice-pipeline-architecture ' , tag : ' Engineering ' , image : ' /blog/voice-pipeline.png ' , content : { fr : { title : ' ... ' , excerpt : ' ... ' , body : ' ... ' }, en : { title :

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
2 views

Related Articles