<?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: MOHAMMED MOUHSINE</title>
    <description>The latest articles on DEV Community by MOHAMMED MOUHSINE (@mohammed_mouhsine_e693240).</description>
    <link>https://dev.to/mohammed_mouhsine_e693240</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%2F4068150%2Fdb8e34ac-e8d2-4c5d-a5ce-bff665e1f74a.jpg</url>
      <title>DEV Community: MOHAMMED MOUHSINE</title>
      <link>https://dev.to/mohammed_mouhsine_e693240</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mohammed_mouhsine_e693240"/>
    <language>en</language>
    <item>
      <title>I Built a Free Sudoku Platform for French Players with Next.js</title>
      <dc:creator>MOHAMMED MOUHSINE</dc:creator>
      <pubDate>Fri, 07 Aug 2026 23:22:35 +0000</pubDate>
      <link>https://dev.to/mohammed_mouhsine_e693240/i-built-a-free-sudoku-platform-for-french-players-with-nextjs-2l3e</link>
      <guid>https://dev.to/mohammed_mouhsine_e693240/i-built-a-free-sudoku-platform-for-french-players-with-nextjs-2l3e</guid>
      <description>&lt;h2&gt;
  
  
  I wanted to build more than another Sudoku page
&lt;/h2&gt;

&lt;p&gt;A few months ago, I started building &lt;a href="https://sudokufr.fr/" rel="noopener noreferrer"&gt;SudokuFR&lt;/a&gt;, a free Sudoku platform for French-speaking players.&lt;/p&gt;

&lt;p&gt;The original idea was simple: create a clean place where anyone could open a Sudoku grid and start playing without creating an account.&lt;/p&gt;

&lt;p&gt;But the project quickly became much bigger.&lt;/p&gt;

&lt;p&gt;Today, SudokuFR includes classic Sudoku, daily puzzles, multiple variants, solving tools, statistics, achievements, printable grids, and learning resources.&lt;/p&gt;

&lt;p&gt;And I’m still building it.&lt;/p&gt;




&lt;h2&gt;
  
  
  What is SudokuFR?
&lt;/h2&gt;

&lt;p&gt;SudokuFR is a free web-based Sudoku platform built primarily for French-speaking players.&lt;/p&gt;

&lt;p&gt;You can play:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Classic 9×9 Sudoku&lt;/li&gt;
&lt;li&gt;Easy, Medium, Difficult and Expert levels&lt;/li&gt;
&lt;li&gt;Daily Sudoku&lt;/li&gt;
&lt;li&gt;Killer Sudoku&lt;/li&gt;
&lt;li&gt;Sudoku X&lt;/li&gt;
&lt;li&gt;Irregular Sudoku&lt;/li&gt;
&lt;li&gt;4×4 Sudoku&lt;/li&gt;
&lt;li&gt;6×6 Sudoku&lt;/li&gt;
&lt;li&gt;16×16 Sudoku&lt;/li&gt;
&lt;li&gt;Samurai Sudoku&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There is no account required.&lt;/p&gt;

&lt;p&gt;Open the site, choose a puzzle, and play.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://sudokufr.fr/" rel="noopener noreferrer"&gt;Try SudokuFR&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Building the actual game experience
&lt;/h2&gt;

&lt;p&gt;One thing I didn't want was a Sudoku site that simply displayed a grid.&lt;/p&gt;

&lt;p&gt;I wanted the game itself to feel useful.&lt;/p&gt;

&lt;p&gt;So the player can use features such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Notes&lt;/li&gt;
&lt;li&gt;Candidates&lt;/li&gt;
&lt;li&gt;Hints&lt;/li&gt;
&lt;li&gt;Grid checking&lt;/li&gt;
&lt;li&gt;Undo and redo&lt;/li&gt;
&lt;li&gt;Checkpoints&lt;/li&gt;
&lt;li&gt;Timer&lt;/li&gt;
&lt;li&gt;Progress tracking&lt;/li&gt;
&lt;li&gt;Printing&lt;/li&gt;
&lt;li&gt;Sharing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The platform also keeps game statistics and achievements so players can see their progress over time.&lt;/p&gt;




&lt;h2&gt;
  
  
  Supporting different Sudoku variants was the interesting part
&lt;/h2&gt;

&lt;p&gt;Classic 9×9 Sudoku was only the beginning.&lt;/p&gt;

&lt;p&gt;Different variants require different grid rules and UI behavior.&lt;/p&gt;

&lt;p&gt;For example, Sudoku X adds diagonal constraints, Killer Sudoku introduces cages, Irregular Sudoku replaces the traditional 3×3 boxes with irregular regions, and Samurai Sudoku combines five overlapping 9×9 grids.&lt;/p&gt;

&lt;p&gt;I also added a playable 16×16 Sudoku using numbers and letters.&lt;/p&gt;

&lt;p&gt;Building these variants forced me to think much more carefully about puzzle validation, interaction state, and reusable game logic.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I chose Next.js
&lt;/h2&gt;

&lt;p&gt;SudokuFR is built with Next.js.&lt;/p&gt;

&lt;p&gt;For this project I needed both:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;A highly interactive game experience.&lt;/li&gt;
&lt;li&gt;Pages that are fast, crawlable and useful outside the game itself.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;SudokuFR isn't only an application.&lt;/p&gt;

&lt;p&gt;It also contains guides about Sudoku rules, solving techniques, different Sudoku types, printable puzzles, and a Sudoku solver.&lt;/p&gt;

&lt;p&gt;Using Next.js made it easier for me to combine these content pages with the interactive parts of the product in the same project.&lt;/p&gt;




&lt;h2&gt;
  
  
  SEO influenced the architecture too
&lt;/h2&gt;

&lt;p&gt;Organic search is an important part of the project.&lt;/p&gt;

&lt;p&gt;Instead of putting everything behind one JavaScript application route, different useful experiences have their own URLs.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;/sudoku-killer/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/sudoku-x/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/sudoku-irregulier/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/sudoku-16x16/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/sudoku-samurai/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/solveur-sudoku/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/sudoku-a-imprimer/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/techniques-sudoku/&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is that each page should be useful to a human visitor even before thinking about rankings.&lt;/p&gt;

&lt;p&gt;This also pushed me to work on internal linking, structured content, accessibility, performance and indexability while building the product.&lt;/p&gt;




&lt;h2&gt;
  
  
  Something I learned from this project
&lt;/h2&gt;

&lt;p&gt;A seemingly simple product can become technically interesting very quickly.&lt;/p&gt;

&lt;p&gt;A Sudoku grid looks simple.&lt;/p&gt;

&lt;p&gt;But once you start adding:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;multiple puzzle types,&lt;/li&gt;
&lt;li&gt;persistent game state,&lt;/li&gt;
&lt;li&gt;hints,&lt;/li&gt;
&lt;li&gt;statistics,&lt;/li&gt;
&lt;li&gt;accessibility,&lt;/li&gt;
&lt;li&gt;mobile layouts,&lt;/li&gt;
&lt;li&gt;printable content,&lt;/li&gt;
&lt;li&gt;SEO pages,&lt;/li&gt;
&lt;li&gt;and different puzzle sizes,&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;the architecture starts to matter a lot.&lt;/p&gt;

&lt;p&gt;It has been a good reminder for me that small products are often great places to learn.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;This project wasn't created just because I found a keyword or wanted another website.&lt;/p&gt;

&lt;p&gt;I genuinely like Sudoku and wanted to build something useful for people who enjoy it too.&lt;/p&gt;

&lt;p&gt;My goal is to keep improving SudokuFR and gradually turn it into one of the most complete free Sudoku experiences for French-speaking players.&lt;/p&gt;

&lt;p&gt;There is still a lot I want to add.&lt;/p&gt;




&lt;h2&gt;
  
  
  I'd love your feedback
&lt;/h2&gt;

&lt;p&gt;If you enjoy Sudoku — or just like looking at side projects — I'd love to know what you think.&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;SudokuFR:&lt;/strong&gt; &lt;a href="https://sudokufr.fr/" rel="noopener noreferrer"&gt;https://sudokufr.fr/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'm especially interested in feedback about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the gameplay UX,&lt;/li&gt;
&lt;li&gt;the Sudoku variants,&lt;/li&gt;
&lt;li&gt;mobile usability,&lt;/li&gt;
&lt;li&gt;and features you think a modern Sudoku platform should have.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for reading 👋&lt;/p&gt;

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