<?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: Parl582</title>
    <description>The latest articles on Forem by Parl582 (@parl).</description>
    <link>https://forem.com/parl</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%2F702044%2Fa4f5f68a-600e-496c-a7db-20f33b38fff1.png</url>
      <title>Forem: Parl582</title>
      <link>https://forem.com/parl</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/parl"/>
    <language>en</language>
    <item>
      <title>How I Built Xentro Using Next.js, Prisma &amp; React Native</title>
      <dc:creator>Parl582</dc:creator>
      <pubDate>Thu, 19 Feb 2026 08:45:35 +0000</pubDate>
      <link>https://forem.com/parl/how-i-built-xentro-using-nextjs-prisma-react-native-19c0</link>
      <guid>https://forem.com/parl/how-i-built-xentro-using-nextjs-prisma-react-native-19c0</guid>
      <description>&lt;p&gt;Building products for small businesses has always interested me.&lt;/p&gt;

&lt;p&gt;While working with boutique owners, traditional clothing sellers, and small business owners, I noticed a common pattern:&lt;/p&gt;

&lt;p&gt;They were selling through Instagram and WhatsApp — but managing everything manually.&lt;/p&gt;

&lt;p&gt;Orders were scattered in DMs.&lt;br&gt;
Payments were confirmed via screenshots.&lt;br&gt;
Inventory wasn’t tracked properly.&lt;/p&gt;

&lt;p&gt;That’s when I decided to build Xentro — a mobile-first online store platform designed for simplicity.&lt;/p&gt;

&lt;p&gt;Here’s how I built it.&lt;/p&gt;

&lt;p&gt;🏗 Tech Stack Overview&lt;/p&gt;

&lt;p&gt;Xentro is built using:&lt;/p&gt;

&lt;p&gt;Next.js (App Router) — Web platform &amp;amp; SEO&lt;/p&gt;

&lt;p&gt;Prisma — Database ORM&lt;/p&gt;

&lt;p&gt;PostgreSQL — Database&lt;/p&gt;

&lt;p&gt;React Native (Expo) — Mobile app&lt;/p&gt;

&lt;p&gt;Vercel — Web hosting&lt;/p&gt;

&lt;p&gt;The goal was simple:&lt;/p&gt;

&lt;p&gt;Fast development.&lt;br&gt;
Scalable architecture.&lt;br&gt;
SEO-ready web presence.&lt;br&gt;
Mobile-first experience.&lt;/p&gt;

&lt;p&gt;🌐 Why Next.js (App Router)?&lt;/p&gt;

&lt;p&gt;I chose Next.js because:&lt;/p&gt;

&lt;p&gt;Server-side rendering (better SEO)&lt;/p&gt;

&lt;p&gt;App Router for structured layout&lt;/p&gt;

&lt;p&gt;Built-in sitemap and robots support&lt;/p&gt;

&lt;p&gt;Easy deployment on Vercel&lt;/p&gt;

&lt;p&gt;The website serves as:&lt;/p&gt;

&lt;p&gt;Brand presence&lt;/p&gt;

&lt;p&gt;SEO layer&lt;/p&gt;

&lt;p&gt;Marketing channel&lt;/p&gt;

&lt;p&gt;Using App Router made it easy to:&lt;/p&gt;

&lt;p&gt;Add structured metadata&lt;/p&gt;

&lt;p&gt;Generate sitemap&lt;/p&gt;

&lt;p&gt;Implement dynamic routes&lt;/p&gt;

&lt;p&gt;Optimize OpenGraph tags&lt;/p&gt;

&lt;p&gt;🗄 Why Prisma?&lt;/p&gt;

&lt;p&gt;For the database layer, I used Prisma because:&lt;/p&gt;

&lt;p&gt;Type-safe queries&lt;/p&gt;

&lt;p&gt;Clean developer experience&lt;/p&gt;

&lt;p&gt;Strong TypeScript support&lt;/p&gt;

&lt;p&gt;Easy migrations&lt;/p&gt;

&lt;p&gt;Example store model:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;model Store {&lt;br&gt;
  id        String   @id @default(cuid())&lt;br&gt;
  name      String&lt;br&gt;
  slug      String   @unique&lt;br&gt;
  createdAt DateTime @default(now())&lt;br&gt;
  updatedAt DateTime @updatedAt&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Prisma keeps backend logic clean and scalable.&lt;/p&gt;

&lt;p&gt;📱 Why React Native?&lt;/p&gt;

&lt;p&gt;Since most small business owners operate from their phone, a mobile app was essential.&lt;/p&gt;

&lt;p&gt;I built the app using:&lt;/p&gt;

&lt;p&gt;React Native (Expo)&lt;/p&gt;

&lt;p&gt;TypeScript&lt;/p&gt;

&lt;p&gt;Clean component structure&lt;/p&gt;

&lt;p&gt;The app allows sellers to:&lt;/p&gt;

&lt;p&gt;Add products&lt;/p&gt;

&lt;p&gt;Manage orders&lt;/p&gt;

&lt;p&gt;Share store link&lt;/p&gt;

&lt;p&gt;Track activity&lt;/p&gt;

&lt;p&gt;The idea was to keep it:&lt;/p&gt;

&lt;p&gt;Minimal&lt;br&gt;
Fast&lt;br&gt;
Simple&lt;/p&gt;

&lt;p&gt;No unnecessary complexity.&lt;/p&gt;

&lt;p&gt;🔗 Web + Mobile Integration&lt;/p&gt;

&lt;p&gt;The architecture is designed so that:&lt;/p&gt;

&lt;p&gt;Sellers manage data from the mobile app&lt;/p&gt;

&lt;p&gt;Customers view store pages via web&lt;/p&gt;

&lt;p&gt;Database remains centralized&lt;/p&gt;

&lt;p&gt;This gives flexibility:&lt;/p&gt;

&lt;p&gt;Web for discovery &amp;amp; SEO&lt;br&gt;
Mobile for seller management&lt;/p&gt;

&lt;p&gt;🚀 Deployment&lt;/p&gt;

&lt;p&gt;Web:&lt;br&gt;
Hosted on Vercel&lt;br&gt;
Automatic deployments from GitHub&lt;/p&gt;

&lt;p&gt;App:&lt;br&gt;
Published on Play Store&lt;/p&gt;

&lt;p&gt;Database:&lt;br&gt;
Hosted on managed PostgreSQL service&lt;/p&gt;

&lt;p&gt;🧠 Key Learnings&lt;/p&gt;

&lt;p&gt;Simplicity wins.&lt;/p&gt;

&lt;p&gt;Small businesses don’t want complexity.&lt;/p&gt;

&lt;p&gt;SEO matters early.&lt;/p&gt;

&lt;p&gt;Type-safe backend saves time.&lt;/p&gt;

&lt;p&gt;Mobile-first mindset changes everything.&lt;/p&gt;

&lt;p&gt;🎯 The Bigger Vision&lt;/p&gt;

&lt;p&gt;Xentro isn’t just a store builder.&lt;/p&gt;

&lt;p&gt;It’s a tool designed to help boutique owners, traditional clothing sellers, and small entrepreneurs build a more professional online presence.&lt;/p&gt;

&lt;p&gt;The goal is to simplify online selling without technical barriers.&lt;/p&gt;

&lt;p&gt;You can explore Xentro here:&lt;/p&gt;

&lt;p&gt;🌐 &lt;a href="https://www.xentroapp.com" rel="noopener noreferrer"&gt;https://www.xentroapp.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;📱 Available on Play Store&lt;/p&gt;

&lt;p&gt;If you're building something for small businesses or using Next.js + Prisma in production, I’d love to connect.&lt;/p&gt;

&lt;p&gt;Let’s build tools that empower small entrepreneurs.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>reactnative</category>
      <category>react</category>
      <category>nextjs</category>
    </item>
  </channel>
</rss>
