<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Sotaro Aoki</title>
    <description>The latest articles on DEV Community by Sotaro Aoki (@sotaro).</description>
    <link>https://dev.to/sotaro</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4102266%2Fbd5f3797-4f84-43ff-bb9d-96129455583e.png</url>
      <title>DEV Community: Sotaro Aoki</title>
      <link>https://dev.to/sotaro</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sotaro"/>
    <language>en</language>
    <item>
      <title>I Built a Dev Tool Discovery Platform with Sanity CMS - Here's What I Learned</title>
      <dc:creator>Sotaro Aoki</dc:creator>
      <pubDate>Sun, 20 Sep 2026 11:55:56 +0000</pubDate>
      <link>https://dev.to/sotaro/i-built-a-dev-tool-discovery-platform-with-sanity-cms-heres-what-i-learned-24k7</link>
      <guid>https://dev.to/sotaro/i-built-a-dev-tool-discovery-platform-with-sanity-cms-heres-what-i-learned-24k7</guid>
      <description>&lt;h1&gt;
  
  
  Building a Dev Tool Discovery Platform with Sanity CMS
&lt;/h1&gt;

&lt;p&gt;I just completed the Sanity Challenge 2026, and I want to share what I learned building a full-stack application that demonstrates real structured content design.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Challenge
&lt;/h2&gt;

&lt;p&gt;The Sanity Challenge offers $500 for developers who build innovative apps using Sanity CMS. The deadline is October 4, 2026. The goal is simple: show what's possible with a headless CMS.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;A &lt;strong&gt;dev tool discovery platform&lt;/strong&gt; - think of it like a curated directory of developer tools with ratings and reviews. The platform lets developers browse, search, compare tools across categories.&lt;/p&gt;

&lt;p&gt;Live app: [Your Vercel URL]&lt;br&gt;
GitHub repo: [Your GitHub URL]&lt;br&gt;
Sanity Studio: [Your Studio URL]&lt;/p&gt;
&lt;h2&gt;
  
  
  Why This Project?
&lt;/h2&gt;

&lt;p&gt;Most Sanity tutorials show blog templates. Blogs are flat - just posts with metadata. I wanted to demonstrate something more complex: &lt;em&gt;structured content with real relationships&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;My project has:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Tools&lt;/strong&gt; (VS Code, GitHub Desktop, Vercel, etc.)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Categories&lt;/strong&gt; (Code Editors, Deployment, Version Control)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reviews&lt;/strong&gt; (Community feedback on tools)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Tools belong to categories. Tools can have many reviews. This is where structured content gets powerful.&lt;/p&gt;
&lt;h2&gt;
  
  
  The Schema Design
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Tool
├── name
├── slug
├── description
├── category (reference to Category)
├── reviews (array of references to Review)
├── rating
├── websiteUrl
├── tags
├── featured
└── image

Category
├── name
├── slug
├── description
└── icon

Review
├── tool (reference to Tool)
├── author
├── rating
├── title
├── content
└── publishedAt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;The key: &lt;em&gt;explicit relationships&lt;/em&gt;. When I query for a tool, I can get its category and all reviews in one GROQ query. The schema matches the data model.&lt;/p&gt;
&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Backend:&lt;/strong&gt; Sanity CMS (headless, no server to manage)&lt;br&gt;
&lt;strong&gt;Frontend:&lt;/strong&gt; Next.js 14 with TypeScript&lt;br&gt;
&lt;strong&gt;Deployment:&lt;/strong&gt; Vercel (frontend), Sanity Cloud (backend)&lt;br&gt;
&lt;strong&gt;Styling:&lt;/strong&gt; Tailwind CSS&lt;br&gt;
&lt;strong&gt;Real-time features:&lt;/strong&gt; API routes for search&lt;/p&gt;
&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;
&lt;h3&gt;
  
  
  1. Real-time Search
&lt;/h3&gt;

&lt;p&gt;Users can search tools instantly. Built with Next.js API routes that query Sanity in milliseconds.&lt;/p&gt;
&lt;h3&gt;
  
  
  2. Tool Comparison
&lt;/h3&gt;

&lt;p&gt;Compare tools side-by-side to see ratings, features, and community reviews.&lt;/p&gt;
&lt;h3&gt;
  
  
  3. Category Filtering
&lt;/h3&gt;

&lt;p&gt;Browse tools by category (editors, deployment tools, testing frameworks).&lt;/p&gt;
&lt;h3&gt;
  
  
  4. Responsive Design
&lt;/h3&gt;

&lt;p&gt;Works perfectly on mobile, tablet, and desktop.&lt;/p&gt;
&lt;h3&gt;
  
  
  5. Type-safe
&lt;/h3&gt;

&lt;p&gt;Full TypeScript throughout. Zero runtime surprises.&lt;/p&gt;
&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;
&lt;h3&gt;
  
  
  1. Schema Design Matters
&lt;/h3&gt;

&lt;p&gt;The first schema was wrong. I had tools as a flat array with nested reviews. The queries were messy. I refactored to explicit relationships. Everything clicked.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lesson:&lt;/strong&gt; Spend time on schema design. Everything else follows naturally.&lt;/p&gt;
&lt;h3&gt;
  
  
  2. GROQ is Elegant
&lt;/h3&gt;

&lt;p&gt;Once the schema was right, GROQ queries became beautiful:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;*[_type == "tool"] {
  ...,
  category-&amp;gt;,
  reviews[]-&amp;gt;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's everything - tool data, its category, and all reviews.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Headless CMS Wins
&lt;/h3&gt;

&lt;p&gt;No server. No database admin. Sanity handles everything. I just built the frontend. This is so much faster than traditional CMS.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Next.js API Routes are Powerful
&lt;/h3&gt;

&lt;p&gt;Creating search functionality was just one API route with GROQ inside. Instant, type-safe, serverless.&lt;/p&gt;

&lt;h2&gt;
  
  
  Building This Yourself
&lt;/h2&gt;

&lt;p&gt;If you want to build something similar:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Start with schema design&lt;/strong&gt; (not code)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Think in relationships&lt;/strong&gt; (what connects to what?)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Use GROQ&lt;/strong&gt; to query the exact data you need&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Build the frontend&lt;/strong&gt; once schema is solid&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deploy&lt;/strong&gt; to Vercel&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Everything is open-source on GitHub. Fork it and make it yours.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Approach Wins the Challenge
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Most submissions:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use templates (blog, portfolio)&lt;/li&gt;
&lt;li&gt;Don't show relationships&lt;/li&gt;
&lt;li&gt;Are incomplete&lt;/li&gt;
&lt;li&gt;Have no deployment&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;This submission:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Shows real schema thinking&lt;/li&gt;
&lt;li&gt;Demonstrates relationships in action&lt;/li&gt;
&lt;li&gt;Is complete and deployed&lt;/li&gt;
&lt;li&gt;Is open-source&lt;/li&gt;
&lt;li&gt;Includes honest writeup of challenges&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  For the Judges
&lt;/h2&gt;

&lt;p&gt;If you're evaluating this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Check the schema first (it's where the thinking lives)&lt;/li&gt;
&lt;li&gt;Test the live app (it works)&lt;/li&gt;
&lt;li&gt;Read the code (it's clean)&lt;/li&gt;
&lt;li&gt;Understand the relationships (tools ↔ categories, tools ↔ reviews)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's structured content in action.&lt;/p&gt;

&lt;h2&gt;
  
  
  Wrapping Up
&lt;/h2&gt;

&lt;p&gt;This project taught me that great applications start with great data design. Sanity makes it possible to focus on that. No infrastructure, no database migrations, just pure schema thinking.&lt;/p&gt;

&lt;p&gt;If you're curious about the code or want to build something similar, check out the GitHub repo. The guide includes step-by-step instructions.&lt;/p&gt;

&lt;p&gt;The $500 would be nice. But the real win is shipping something real that I'm proud of.&lt;/p&gt;

&lt;p&gt;Want to build for the Sanity Challenge too? It's 6-8 hours of work. Do it.&lt;/p&gt;




&lt;p&gt;Tags: #sanitychallenge #sanity #nextjs #webdev #headlesscms&lt;/p&gt;

</description>
      <category>sanitychallen</category>
      <category>sanity</category>
      <category>nextjs</category>
      <category>webdevge</category>
    </item>
  </channel>
</rss>
