<?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: İsmet Özdemir</title>
    <description>The latest articles on DEV Community by İsmet Özdemir (@isoozdemr).</description>
    <link>https://dev.to/isoozdemr</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%2F4048807%2F1e1227f8-cd83-4eeb-93f0-b2569aacd036.jpg</url>
      <title>DEV Community: İsmet Özdemir</title>
      <link>https://dev.to/isoozdemr</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/isoozdemr"/>
    <language>en</language>
    <item>
      <title># How I Built a Fast and Simple Yes/No Wheel with Next.js</title>
      <dc:creator>İsmet Özdemir</dc:creator>
      <pubDate>Mon, 27 Jul 2026 06:14:30 +0000</pubDate>
      <link>https://dev.to/isoozdemr/-how-i-built-a-fast-and-simple-yesno-wheel-with-nextjs-4l21</link>
      <guid>https://dev.to/isoozdemr/-how-i-built-a-fast-and-simple-yesno-wheel-with-nextjs-4l21</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F4wkwyfj4pq7ziubaqoot.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F4wkwyfj4pq7ziubaqoot.PNG" alt=" " width="800" height="296"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Sometimes the simplest ideas solve the most common problems.&lt;/p&gt;

&lt;p&gt;I wanted to build a tiny web app that helps people answer one simple question:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"Yes or No?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Not because a random wheel should make important life decisions—but because people often get stuck overthinking everyday choices.&lt;/p&gt;

&lt;p&gt;The challenge was creating a tool that feels instant, smooth, and works on every device.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Goal
&lt;/h2&gt;

&lt;p&gt;The project had a few simple requirements:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fast loading&lt;/li&gt;
&lt;li&gt;Mobile-friendly&lt;/li&gt;
&lt;li&gt;No login required&lt;/li&gt;
&lt;li&gt;Completely free&lt;/li&gt;
&lt;li&gt;Smooth spinning animation&lt;/li&gt;
&lt;li&gt;Works directly in the browser&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of adding dozens of unnecessary features, I focused on making one thing work really well.&lt;/p&gt;

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

&lt;p&gt;The application is built using:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Next.js&lt;/li&gt;
&lt;li&gt;React&lt;/li&gt;
&lt;li&gt;TypeScript&lt;/li&gt;
&lt;li&gt;Tailwind CSS&lt;/li&gt;
&lt;li&gt;Vercel&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This combination made it easy to build a responsive interface while keeping the bundle size small.&lt;/p&gt;

&lt;h2&gt;
  
  
  Creating the Wheel
&lt;/h2&gt;

&lt;p&gt;The most interesting part wasn't drawing the wheel—it was making the spin feel natural.&lt;/p&gt;

&lt;p&gt;A good spinning wheel shouldn't stop abruptly or look predictable.&lt;/p&gt;

&lt;p&gt;To improve the experience, I focused on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Smooth easing animations&lt;/li&gt;
&lt;li&gt;Random but fair outcomes&lt;/li&gt;
&lt;li&gt;Consistent spin duration&lt;/li&gt;
&lt;li&gt;Responsive rendering on both desktop and mobile&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The result feels much closer to a real spinning wheel than a simple random number generator.&lt;/p&gt;

&lt;h2&gt;
  
  
  Performance Matters
&lt;/h2&gt;

&lt;p&gt;One lesson I learned while building this project is that speed matters more than complexity.&lt;/p&gt;

&lt;p&gt;A lightweight tool loads faster, keeps visitors engaged, and usually performs better in search engines.&lt;/p&gt;

&lt;p&gt;Some optimizations included:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Image optimization&lt;/li&gt;
&lt;li&gt;Lazy loading where appropriate&lt;/li&gt;
&lt;li&gt;Minimal JavaScript&lt;/li&gt;
&lt;li&gt;Responsive layout&lt;/li&gt;
&lt;li&gt;Good Core Web Vitals&lt;/li&gt;
&lt;/ul&gt;

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

&lt;p&gt;Building a tiny utility website taught me that useful products don't need to be complicated.&lt;/p&gt;

&lt;p&gt;Many people simply want a tool that works immediately without ads, popups, or registration.&lt;/p&gt;

&lt;p&gt;Sometimes solving one small problem well is enough.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It Yourself
&lt;/h2&gt;

&lt;p&gt;If you're curious, you can try the project here:&lt;/p&gt;

&lt;p&gt;👉 [&lt;a href="https://yesnowheelapp.com" rel="noopener noreferrer"&gt;https://yesnowheelapp.com&lt;/a&gt;]&lt;/p&gt;

&lt;p&gt;I'd also love to hear how you would improve a simple decision-making tool or what features you'd add in the future.&lt;/p&gt;

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