<?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: vimex vamos</title>
    <description>The latest articles on DEV Community by vimex vamos (@vimex_mavos).</description>
    <link>https://dev.to/vimex_mavos</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%2F4115609%2F12284b07-5115-4835-9604-7a77bd7003a8.png</url>
      <title>DEV Community: vimex vamos</title>
      <link>https://dev.to/vimex_mavos</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vimex_mavos"/>
    <language>en</language>
    <item>
      <title>Building BoReels: A Drama Discovery Platform with Next.js 16</title>
      <dc:creator>vimex vamos</dc:creator>
      <pubDate>Tue, 08 Sep 2026 11:36:04 +0000</pubDate>
      <link>https://dev.to/vimex_mavos/building-boreels-a-drama-discovery-platform-with-nextjs-16-17gj</link>
      <guid>https://dev.to/vimex_mavos/building-boreels-a-drama-discovery-platform-with-nextjs-16-17gj</guid>
      <description>&lt;p&gt;Building a drama discovery platform that serves 700+ short dramas across 12 languages is no small feat. Here's how I built BoReels using Next.js 16, TypeScript, and Tailwind CSS.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Short drama platforms like ReelShort and DramaBox are exploding globally — a $3 billion market growing 115% year-over-year. But there's no discovery layer. Users have to download each app separately, browse through hundreds of titles, and hope they find something good.&lt;/p&gt;

&lt;p&gt;BoReels solves this by aggregating dramas from 5+ platforms into a single discovery interface with free previews, unique synopses, and a Mood Match feature.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js 16&lt;/strong&gt; with App Router and Turbopack&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TypeScript&lt;/strong&gt; for type safety&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS&lt;/strong&gt; for styling&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Docker&lt;/strong&gt; for deployment (standalone output)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;nginx&lt;/strong&gt; reverse proxy on aaPanel VPS&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Mood Match — Emotion-Based Recommendations
&lt;/h3&gt;

&lt;p&gt;The standout feature. Users select from 8 moods and get drama recommendations matching their emotional state.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Hreflang for 12 Languages
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;link&lt;/span&gt; &lt;span class="nx"&gt;rel&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;alternate&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="nx"&gt;hrefLang&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;id&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="nx"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://boreels.com/&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;/&amp;gt;&lt;/span&gt;
&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;link&lt;/span&gt; &lt;span class="nx"&gt;rel&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;alternate&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="nx"&gt;hrefLang&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;en&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="nx"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://boreels.com/?lang=en&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This resulted in visitors from 10 countries within 8 days of launch.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Lazy Load for Performance
&lt;/h3&gt;

&lt;p&gt;Initially, all 700+ dramas were bundled into the client — 199KB HTML. By splitting into initial bundle (30 dramas) + API fetch (remaining), page size dropped to 133KB — a 33% reduction.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Schema Markup (JSON-LD)
&lt;/h3&gt;

&lt;p&gt;4+ structured data blocks: WebSite, Organization, FAQPage, BreadcrumbList. Google detected 59 breadcrumbs within the first week.&lt;/p&gt;

&lt;h2&gt;
  
  
  SEO Results (8 Days)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;118 clicks&lt;/strong&gt; from Google&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;1,160 impressions&lt;/strong&gt; &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;10.6% CTR&lt;/strong&gt; (3x industry average)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Position 7.9&lt;/strong&gt; (Page 1!)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;10 countries&lt;/strong&gt;: Indonesia, Philippines, India, Kenya, USA, Malaysia, Saudi Arabia, Bangladesh, Singapore, UAE&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Backlink Strategy
&lt;/h2&gt;

&lt;p&gt;White hat only:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Blogger (DA 99) — auto-post 3x/day via API&lt;/li&gt;
&lt;li&gt;WordPress self-hosted (DA 92) — auto-post 3x/day via REST API
&lt;/li&gt;
&lt;li&gt;Tumblr (DA 86) — auto-post 3x/day via OAuth&lt;/li&gt;
&lt;li&gt;Medium (DA 96) — manual&lt;/li&gt;
&lt;li&gt;Wattpad (DA 90+) — manual&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Total: ~27-45 backlinks/day, natural anchor text rotation across 5 categories.&lt;/p&gt;

&lt;h2&gt;
  
  
  Lessons Learned
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;ISR cache is tricky&lt;/strong&gt; — Next.js prerenders pages with s-maxage=31536000. Use force-dynamic carefully.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Docker build cache&lt;/strong&gt; — Always use --no-cache when deploying changes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hreflang works&lt;/strong&gt; — 10 countries in 8 days proves multilingual SEO from day 1 is worth it.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Long-tail &amp;gt; head keywords&lt;/strong&gt; — 77% of clicks came from one drama title. Each of 700+ dramas is a unique keyword.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Programmatic landing pages (100+ keyword targets)&lt;/li&gt;
&lt;li&gt;Core Web Vitals optimization (target &amp;lt;100KB)&lt;/li&gt;
&lt;li&gt;Guest post outreach to entertainment blogs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Check it out at &lt;a href="https://boreels.com" rel="noopener noreferrer"&gt;BoReels&lt;/a&gt; or try the &lt;a href="https://boreels.com/moodmatch" rel="noopener noreferrer"&gt;Mood Match&lt;/a&gt; feature!&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built with Next.js 16, TypeScript, Tailwind CSS, Docker, and a lot of late nights.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>nextjs</category>
      <category>seo</category>
      <category>webdev</category>
      <category>react</category>
    </item>
  </channel>
</rss>
