<?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: Nurman Tri Gumelar</title>
    <description>The latest articles on DEV Community by Nurman Tri Gumelar (@nurmantg).</description>
    <link>https://dev.to/nurmantg</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%2F4118709%2F041741c8-623f-4fb2-8653-6cd398cba994.png</url>
      <title>DEV Community: Nurman Tri Gumelar</title>
      <link>https://dev.to/nurmantg</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nurmantg"/>
    <language>en</language>
    <item>
      <title>Building an Ultra-Fast Link-in-Bio Platform with Laravel 11, Livewire 3 &amp; Real-Time Phone Preview</title>
      <dc:creator>Nurman Tri Gumelar</dc:creator>
      <pubDate>Thu, 10 Sep 2026 06:51:53 +0000</pubDate>
      <link>https://dev.to/nurmantg/building-an-ultra-fast-link-in-bio-platform-with-laravel-11-livewire-3-real-time-phone-preview-m32</link>
      <guid>https://dev.to/nurmantg/building-an-ultra-fast-link-in-bio-platform-with-laravel-11-livewire-3-real-time-phone-preview-m32</guid>
      <description>&lt;h1&gt;
  
  
  Building an Ultra-Fast Link-in-Bio Platform with Laravel 11, Livewire 3 &amp;amp; Real-Time Phone Preview
&lt;/h1&gt;

&lt;p&gt;Most link-in-bio tools on the web today share the same common frustrations: sluggish page load times, full-page reloads when editing links, and long, clunky URLs.&lt;/p&gt;

&lt;p&gt;I wanted to build a modern, minimalist, and ultra-fast link-in-bio platform that solves these problems with a clean 6-character domain: &lt;strong&gt;&lt;a href="https://gas.pm" rel="noopener noreferrer"&gt;GAS.PM&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;In this article, I want to break down the architectural choices, tech stack, and techniques used to build &lt;strong&gt;GAS.PM&lt;/strong&gt; from scratch.&lt;/p&gt;




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

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Backend:&lt;/strong&gt; Laravel 11 (PHP 8.3)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Frontend / Interactivity:&lt;/strong&gt; Livewire 3 + Alpine.js&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Styling:&lt;/strong&gt; Tailwind CSS (Modern Glassmorphism &amp;amp; Custom Themes)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database:&lt;/strong&gt; MySQL&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Production Server:&lt;/strong&gt; Nginx + PHP-FPM on Linux&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🎯 1. Real-Time Split-Screen Live Preview with Livewire 3
&lt;/h2&gt;

&lt;p&gt;The core UX challenge of a bio link builder is giving creators immediate visual feedback. Instead of saving, reloading, and opening a new tab, &lt;strong&gt;GAS.PM&lt;/strong&gt; utilizes a split-screen dashboard:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Left Side:&lt;/strong&gt; The configuration panel (adding links, reordering, tweaking avatars, backdrop filters, and button styles).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Right Side:&lt;/strong&gt; An interactive simulated smartphone frame rendering the live public profile.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;With &lt;strong&gt;Livewire 3&lt;/strong&gt;, updates happen seamlessly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;When a user changes a color picker or adjusts the glassmorphism blur slider, Livewire dynamically morphs only the modified DOM nodes inside the phone frame without full-page reloads.&lt;/li&gt;
&lt;li&gt;Drag-and-drop link reordering updates the database order instantly in the background.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🎨 2. Deep Aesthetic Customization (Glassmorphism &amp;amp; Frosted Glass)
&lt;/h2&gt;

&lt;p&gt;Creators care deeply about their aesthetic identity. Rather than offering just 3 static templates, GAS.PM gives users granular control over:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Backdrop Filters:&lt;/strong&gt; Frosted glass overlay opacity and dynamic  values.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Button Shapes:&lt;/strong&gt; Rounded, sharp, or minimalist border styles.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Typography &amp;amp; Category Headers:&lt;/strong&gt; Visually grouping multiple links into distinct sections with clean typography.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Live Search Bar:&lt;/strong&gt; Visitors can search through complex portfolios or link trees in real-time.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  📈 3. Silent Edge Analytics &amp;amp; Instant QR Code Generator
&lt;/h2&gt;

&lt;p&gt;A link in bio isn't complete without insights and sharing tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Edge Analytics:&lt;/strong&gt; Background logging of  and  mapped with device and location insights.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Canvas QR Code Generator:&lt;/strong&gt; Users can generate and download print-ready high-resolution QR codes directly from the dashboard for physical packaging, business cards, or event banners.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🚀 Check It Out Live
&lt;/h2&gt;

&lt;p&gt;The platform is completely free to use:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Platform:&lt;/strong&gt; &lt;a href="https://gas.pm" rel="noopener noreferrer"&gt;https://gas.pm&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Live Demo Bio:&lt;/strong&gt; &lt;a href="https://gas.pm/nurmantg" rel="noopener noreferrer"&gt;https://gas.pm/nurmantg&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'd love to hear feedback from the developer and creator community on features you'd love to see next!&lt;/p&gt;

</description>
      <category>laravel</category>
      <category>webdev</category>
      <category>tailwindcss</category>
      <category>php</category>
    </item>
  </channel>
</rss>
