<?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>Forem: Johan Smith</title>
    <description>The latest articles on Forem by Johan Smith (@johan_smith_6110186d16f54).</description>
    <link>https://forem.com/johan_smith_6110186d16f54</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3191371%2Fad7dedea-1f5c-4268-a256-c1b5c080f52d.png</url>
      <title>Forem: Johan Smith</title>
      <link>https://forem.com/johan_smith_6110186d16f54</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/johan_smith_6110186d16f54"/>
    <language>en</language>
    <item>
      <title>Boosting Developer Productivity: Why Food Choices Like Firehouse Subs Matter</title>
      <dc:creator>Johan Smith</dc:creator>
      <pubDate>Thu, 24 Jul 2025 11:51:40 +0000</pubDate>
      <link>https://forem.com/johan_smith_6110186d16f54/boosting-developer-productivity-why-food-choices-like-firehouse-subs-matter-1a4f</link>
      <guid>https://forem.com/johan_smith_6110186d16f54/boosting-developer-productivity-why-food-choices-like-firehouse-subs-matter-1a4f</guid>
      <description>&lt;p&gt;As developers, we often spend long hours in front of screens, powering through lines of code. But one thing we often overlook? Nutrition. Choosing high-protein, &lt;a href="https://firehousesubs-menue.com/" rel="noopener noreferrer"&gt;balanced meals&lt;/a&gt; can significantly improve focus, reduce burnout, and keep your energy levels steady throughout the day.&lt;/p&gt;

&lt;p&gt;I recently explored the firehousesubs-menue, and was surprised at how customizable and energy-boosting their meal options can be—especially for lunch during coding sprints.&lt;/p&gt;

&lt;p&gt;🔧 Do you plan your meals around productivity?&lt;br&gt;
🍽️ What’s your go-to lunch while in dev mode?&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Building a Restaurant Menu App with JSON &amp; React – Inspired by Olive Garden</title>
      <dc:creator>Johan Smith</dc:creator>
      <pubDate>Wed, 23 Jul 2025 12:33:22 +0000</pubDate>
      <link>https://forem.com/johan_smith_6110186d16f54/building-a-restaurant-menu-app-with-json-react-inspired-by-olive-garden-2bj0</link>
      <guid>https://forem.com/johan_smith_6110186d16f54/building-a-restaurant-menu-app-with-json-react-inspired-by-olive-garden-2bj0</guid>
      <description>&lt;p&gt;If you're learning frontend development or working on portfolio projects, creating a menu-based app is a great exercise. I recently built a mock menu app using React and JSON, inspired by the Olive Garden menue. It includes dish categories, image grids, and a simple filter system.&lt;br&gt;
This kind of project helps you practice component structuring, useState, and dynamic rendering with real-world data concepts.&lt;/p&gt;

&lt;p&gt;You can also &lt;a href="https://olivegardenmenue.com/olive-garden-soup-menu/" rel="noopener noreferrer"&gt;check out&lt;/a&gt; menu inspiration and structure here&lt;br&gt;
👉&lt;/p&gt;

</description>
      <category>react</category>
      <category>json</category>
      <category>frontend</category>
      <category>portfolio</category>
    </item>
    <item>
      <title>Building a Nutrition-Focused Food Menu App UI with JSON and React</title>
      <dc:creator>Johan Smith</dc:creator>
      <pubDate>Wed, 23 Jul 2025 10:07:39 +0000</pubDate>
      <link>https://forem.com/johan_smith_6110186d16f54/building-a-nutrition-focused-food-menu-app-ui-with-json-and-react-3cm4</link>
      <guid>https://forem.com/johan_smith_6110186d16f54/building-a-nutrition-focused-food-menu-app-ui-with-json-and-react-3cm4</guid>
      <description>&lt;p&gt;Hey DEV community! 👋&lt;/p&gt;

&lt;p&gt;As developers, we often build apps that solve real-world problems—and food is one of the most universal. Recently, I’ve been exploring how to structure a food menu app with a focus on nutrition information, inspired by popular restaurant menus like Culver’s.&lt;/p&gt;

&lt;p&gt;🛠️ Tech Stack&lt;br&gt;
React (for UI)&lt;/p&gt;

&lt;p&gt;JSON (for dynamic menu data)&lt;/p&gt;

&lt;p&gt;Tailwind CSS (for styling)&lt;/p&gt;

&lt;p&gt;Optional: Firebase for backend / auth&lt;/p&gt;

&lt;p&gt;💡 Features to Consider:&lt;br&gt;
Group items by category (e.g., burgers, sides, desserts)&lt;/p&gt;

&lt;p&gt;Include dynamic nutrition facts&lt;/p&gt;

&lt;p&gt;Use tags for vegetarian, gluten-free, etc.&lt;/p&gt;

&lt;p&gt;Responsive design for mobile users&lt;/p&gt;

&lt;p&gt;Search and filter capability&lt;/p&gt;

&lt;p&gt;🧩 Data Structure Sample:&lt;br&gt;
json&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
{&lt;br&gt;
  "category": "Burgers",&lt;br&gt;
  "items": [&lt;br&gt;
    {&lt;br&gt;
      "name": "ButterBurger",&lt;br&gt;
      "calories": 390,&lt;br&gt;
      "price": 4.99,&lt;br&gt;
      "tags": ["beef", "signature"]&lt;br&gt;
    }&lt;br&gt;
  ]&lt;br&gt;
}&lt;br&gt;
🔗 Real-World Reference&lt;br&gt;
If you're working on a &lt;a href="https://theculvers-menu.com/culvers-tucson-menu/" rel="noopener noreferrer"&gt;food-related app&lt;/a&gt;, it's helpful to study real examples. I took some cues from The Culver’s Menu, which provides a clear breakdown of categories, ingredients, and nutritional values. It’s a great case study in how to present menu data effectively.&lt;/p&gt;

&lt;p&gt;Would love to hear your thoughts:&lt;/p&gt;

&lt;p&gt;How do you handle complex data like nutrition in UI?&lt;/p&gt;

&lt;p&gt;Any tips for filtering and tagging?&lt;/p&gt;

&lt;p&gt;Let’s build something tasty and usable! 🍔💻&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How I Built a Restaurant Menu Web App Using Olive Garden Menu Data</title>
      <dc:creator>Johan Smith</dc:creator>
      <pubDate>Tue, 08 Jul 2025 10:35:48 +0000</pubDate>
      <link>https://forem.com/johan_smith_6110186d16f54/how-i-built-a-restaurant-menu-web-app-using-olive-garden-menu-data-18ja</link>
      <guid>https://forem.com/johan_smith_6110186d16f54/how-i-built-a-restaurant-menu-web-app-using-olive-garden-menu-data-18ja</guid>
      <description>&lt;p&gt;As a developer experimenting with frontend skills and UI/UX design, I recently built a restaurant menu web app that simulates a real-world experience using data inspired by the Olive Garden menu. This project helped me understand practical frontend concepts like dynamic filtering, responsive layout, and data structuring.&lt;/p&gt;

&lt;p&gt;Here’s what I included in the app:&lt;/p&gt;

&lt;p&gt;Category-based Filtering (Appetizers, Entrees, Desserts)&lt;/p&gt;

&lt;p&gt;Responsive Grid Layout using Tailwind CSS&lt;/p&gt;

&lt;p&gt;JSON-based Menu Data modeled after popular restaurants like Olive Garden&lt;/p&gt;

&lt;p&gt;Dark Mode Toggle and basic animations for user engagement&lt;/p&gt;

&lt;p&gt;I also worked on improving accessibility and integrating a mini cart function using React. The goal was to simulate a menu that could work for any restaurant, and Olive Garden’s structured menu was a perfect reference.&lt;/p&gt;

&lt;p&gt;You can &lt;a href="https://olive-garden-menu.net/olive-garden-appetizer-menu/" rel="noopener noreferrer"&gt;check out&lt;/a&gt; the design inspiration and menu details I used here.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How to Build an Interactive Food Menu Web App with React</title>
      <dc:creator>Johan Smith</dc:creator>
      <pubDate>Tue, 08 Jul 2025 10:34:51 +0000</pubDate>
      <link>https://forem.com/johan_smith_6110186d16f54/how-to-build-an-interactive-food-menu-web-app-with-react-17i0</link>
      <guid>https://forem.com/johan_smith_6110186d16f54/how-to-build-an-interactive-food-menu-web-app-with-react-17i0</guid>
      <description>&lt;p&gt;Hey devs! 👋&lt;/p&gt;

&lt;p&gt;I recently worked on creating an interactive food menu web app that lets users browse, filter, and order meals seamlessly. Using React for the frontend and MongoDB for storing menu items, I focused on making the UI intuitive and responsive—perfect for restaurants wanting to improve their online presence.&lt;/p&gt;

&lt;p&gt;If you're interested in building similar projects, I’d love to share some tips on organizing &lt;a href="https://raisingcanes-menus.com/coleslaw/" rel="noopener noreferrer"&gt;food data&lt;/a&gt;, optimizing load times, and creating smooth user interactions. Feel free to check out some live demos or ask questions about integrating backend APIs with dynamic food menus!&lt;/p&gt;

&lt;p&gt;Sharing this because I think combining tech skills with real-world applications like food menus can be a great way to build practical projects.&lt;/p&gt;

&lt;p&gt;Would anyone else be working on food-related apps or have ideas on how to enhance digital dining experiences?&lt;/p&gt;

&lt;p&gt;This post is technical, relevant, and natural for the dev.to audience while gently introducing your food menu topic and inviting engagement without sounding promotional or spammy. Would you like me to draft the full post or help with code snippets?&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How to Build an Interactive Food Menu Web App with React</title>
      <dc:creator>Johan Smith</dc:creator>
      <pubDate>Tue, 17 Jun 2025 15:26:57 +0000</pubDate>
      <link>https://forem.com/johan_smith_6110186d16f54/how-to-build-an-interactive-food-menu-web-app-with-react-4f20</link>
      <guid>https://forem.com/johan_smith_6110186d16f54/how-to-build-an-interactive-food-menu-web-app-with-react-4f20</guid>
      <description>&lt;p&gt;Hey devs! 👋&lt;/p&gt;

&lt;p&gt;I recently worked on creating an interactive food menu web app that lets users browse, filter, and order meals seamlessly. Using React for the frontend and MongoDB for storing menu items, I focused on making the UI intuitive and responsive—perfect for restaurants wanting to improve their online presence.&lt;/p&gt;

&lt;p&gt;If you're interested in building similar projects, I’d love to share some tips on organizing &lt;a href="https://raisingcanes-menus.com/coleslaw/" rel="noopener noreferrer"&gt;food data&lt;/a&gt;, optimizing load times, and creating smooth user interactions. Feel free to check out some live demos or ask questions about integrating backend APIs with dynamic food menus!&lt;/p&gt;

&lt;p&gt;Sharing this because I think combining tech skills with real-world applications like food menus can be a great way to build practical projects.&lt;/p&gt;

&lt;p&gt;Would anyone else be working on food-related apps or have ideas on how to enhance digital dining experiences?&lt;/p&gt;

&lt;p&gt;This post is technical, relevant, and natural for the dev.to audience while gently introducing your food menu topic and inviting engagement without sounding promotional or spammy. Would you like me to draft the full post or help with code snippets?&lt;/p&gt;

</description>
      <category>food</category>
      <category>menu</category>
      <category>burger</category>
    </item>
    <item>
      <title>How Restaurant APIs and Web Scraping Can Power Dynamic Menus Like Cracker Barrel</title>
      <dc:creator>Johan Smith</dc:creator>
      <pubDate>Sat, 31 May 2025 11:15:35 +0000</pubDate>
      <link>https://forem.com/johan_smith_6110186d16f54/how-restaurant-apis-and-web-scraping-can-power-dynamic-menus-like-cracker-barrel-l0b</link>
      <guid>https://forem.com/johan_smith_6110186d16f54/how-restaurant-apis-and-web-scraping-can-power-dynamic-menus-like-cracker-barrel-l0b</guid>
      <description>&lt;p&gt;In today’s digital era, restaurants with ever-changing menus—like Cracker Barrel—require dynamic solutions to keep their pricing and meal data updated online. Developers often face the challenge of fetching such structured content from third-party websites or apps. This is where restaurant APIs or ethical web scraping come into play.&lt;/p&gt;

&lt;p&gt;In this post, we’ll explore how to build a Python-based scraper that tracks real-time menu changes, and discuss best practices around API integration, respecting robots.txt, and data structuring for user-facing restaurant apps.&lt;/p&gt;

&lt;p&gt;This concept is especially helpful for developers working on food delivery, review platforms, or price comparison tools featuring brands like Cracker Barrel Menu (see more here). Let’s dive into the tech that brings your &lt;a href="https://crackerbarrelmenuwithprices.com/coupons/" rel="noopener noreferrer"&gt;favorite dishes&lt;/a&gt; online—accurately and efficiently.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
