<?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: Lilian</title>
    <description>The latest articles on DEV Community by Lilian (@bostan).</description>
    <link>https://dev.to/bostan</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%2F3874261%2F3c588cab-6243-4009-bbc1-08179d54ad9b.jpg</url>
      <title>DEV Community: Lilian</title>
      <link>https://dev.to/bostan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bostan"/>
    <language>en</language>
    <item>
      <title>How We Built a Sober Driver Booking System in Moldova: Real-time Dispatch with Node.js, Supabase &amp; Vercel</title>
      <dc:creator>Lilian</dc:creator>
      <pubDate>Sun, 26 Apr 2026 01:49:22 +0000</pubDate>
      <link>https://dev.to/bostan/how-we-built-a-sober-driver-booking-system-in-moldova-real-time-dispatch-with-nodejs-supabase--418a</link>
      <guid>https://dev.to/bostan/how-we-built-a-sober-driver-booking-system-in-moldova-real-time-dispatch-with-nodejs-supabase--418a</guid>
      <description>&lt;p&gt;How We Built a Sober Driver Booking System in Moldova: Real-time Dispatch with Node.js, Supabase &amp;amp; Vercel&lt;br&gt;
In September 2024, Moldova reclassified drunk driving from an administrative offense into a criminal offense — with prison sentences up to 4 years and fines reaching 150,000 MDL (~3,000 EUR).&lt;br&gt;
This single legal change transformed the local market for designated driver services overnight. As the team behind PlusRent, a car rental and sober driver platform in Chișinău, we suddenly faced 3-5x more booking requests during peak hours (Friday-Saturday nights, 22:00-04:00).&lt;br&gt;
Our existing manual dispatch system — phone calls, WhatsApp messages, Excel spreadsheets — became a bottleneck within weeks. We had to build something better.&lt;br&gt;
This article documents the technical journey of building a real-time sober driver booking system that handles dispatch, GPS tracking, ETA calculation, and payment integration — using a serverless architecture on a startup budget.&lt;/p&gt;

&lt;p&gt;Context: If you're curious about the legal side of why this market exploded, I wrote a separate piece on Moldova's 2026 DUI legislation covering all the legal details. This post focuses on the engineering side.&lt;/p&gt;

&lt;p&gt;The Problem We Faced&lt;br&gt;
A "sober driver" service has unique constraints that traditional rideshare apps don't address:&lt;/p&gt;

&lt;p&gt;The driver drives the customer's car, not their own&lt;br&gt;
Customer is intoxicated — UX must be foolproof&lt;br&gt;
Peak hours are extreme — 80% of bookings happen in 6-hour windows&lt;br&gt;
Geographic precision matters — restaurants, weddings, private addresses&lt;br&gt;
Trust is critical — driver gets keys to expensive vehicles&lt;/p&gt;

&lt;p&gt;Existing solutions like Yandex Go or Uber don't offer this service in Moldova. Local competitors used WhatsApp + manual dispatch — slow, error-prone, and unscalable.&lt;br&gt;
We needed:&lt;/p&gt;

&lt;p&gt;Real-time booking with under 30-second confirmation&lt;br&gt;
Live driver GPS tracking&lt;br&gt;
Automatic dispatch to nearest available driver&lt;br&gt;
Customer-facing ETA updates&lt;br&gt;
Multi-language UI (Romanian, Russian, English)&lt;br&gt;
Payment options (cash + card)&lt;/p&gt;

&lt;p&gt;All on a budget that wouldn't bankrupt a small startup.&lt;/p&gt;

&lt;p&gt;Our Stack&lt;br&gt;
After evaluating options, we chose:&lt;br&gt;
Frontend:    Next.js 14 (App Router)&lt;br&gt;
Hosting:     Vercel (Edge Functions)&lt;br&gt;
Backend:     Node.js + Supabase Edge Functions&lt;br&gt;
Database:    Supabase (PostgreSQL + Realtime)&lt;br&gt;
Auth:        Supabase Auth&lt;br&gt;
Maps:        Google Maps Platform&lt;br&gt;
SMS:         Twilio&lt;br&gt;
Payments:    Stripe + cash handling&lt;br&gt;
Monitoring:  Sentry + Vercel Analytics&lt;br&gt;
Why this stack?&lt;/p&gt;

&lt;p&gt;Vercel + Next.js: Zero-config deployment, edge functions for sub-100ms response globally&lt;br&gt;
Supabase: PostgreSQL + Realtime WebSockets in one service. Replaces 3-4 separate services we'd otherwise need&lt;br&gt;
Google Maps: No alternative comes close for Moldova's address coverage&lt;br&gt;
Twilio: Reliable SMS for OTP and dispatch notifications&lt;/p&gt;

&lt;p&gt;Total monthly infrastructure cost during MVP phase: ~$40/month. After scaling to current volume: ~$180/month.&lt;/p&gt;

&lt;p&gt;Database Schema: The Foundation&lt;br&gt;
The data model needed to handle three primary entities and their relationships:&lt;br&gt;
sql-- Core tables (simplified)&lt;/p&gt;

&lt;p&gt;CREATE TABLE drivers (&lt;br&gt;
  id UUID PRIMARY KEY DEFAULT gen_random_uuid(),&lt;br&gt;
  phone TEXT UNIQUE NOT NULL,&lt;br&gt;
  full_name TEXT NOT NULL,&lt;br&gt;
  status TEXT CHECK (status IN ('offline', 'available', 'busy')),&lt;br&gt;
  current_location GEOGRAPHY(POINT, 4326),&lt;br&gt;
  rating NUMERIC(3,2) DEFAULT 5.00,&lt;br&gt;
  total_rides INTEGER DEFAULT 0,&lt;br&gt;
  created_at TIMESTAMPTZ DEFAULT now()&lt;br&gt;
);&lt;/p&gt;

&lt;p&gt;CREATE TABLE bookings (&lt;br&gt;
  id UUID PRIMARY KEY DEFAULT gen_random_uuid(),&lt;br&gt;
  customer_phone TEXT NOT NULL,&lt;br&gt;
  pickup_location GEOGRAPHY(POINT, 4326) NOT NULL,&lt;br&gt;
  pickup_address TEXT NOT NULL,&lt;br&gt;
  destination_location GEOGRAPHY(POINT, 4326),&lt;br&gt;
  destination_address TEXT,&lt;br&gt;
  status TEXT CHECK (status IN (&lt;br&gt;
    'pending', 'assigned', 'en_route', &lt;br&gt;
    'arrived', 'in_progress', 'completed', 'cancelled'&lt;br&gt;
  )),&lt;br&gt;
  driver_id UUID REFERENCES drivers(id),&lt;br&gt;
  estimated_price NUMERIC(10,2),&lt;br&gt;
  final_price NUMERIC(10,2),&lt;br&gt;
  payment_method TEXT,&lt;br&gt;
  created_at TIMESTAMPTZ DEFAULT now(),&lt;br&gt;
  assigned_at TIMESTAMPTZ,&lt;br&gt;
  completed_at TIMESTAMPTZ&lt;br&gt;
);&lt;/p&gt;

&lt;p&gt;CREATE TABLE driver_locations (&lt;br&gt;
  driver_id UUID REFERENCES drivers(id),&lt;br&gt;
  location GEOGRAPHY(POINT, 4326) NOT NULL,&lt;br&gt;
  heading NUMERIC(5,2),&lt;br&gt;
  speed NUMERIC(5,2),&lt;br&gt;
  recorded_at TIMESTAMPTZ DEFAULT now()&lt;br&gt;
);&lt;/p&gt;

&lt;p&gt;-- Critical index for nearest-driver lookup&lt;br&gt;
CREATE INDEX idx_drivers_location ON drivers &lt;br&gt;
  USING GIST(current_location) &lt;br&gt;
  WHERE status = 'available';&lt;/p&gt;

&lt;p&gt;CREATE INDEX idx_bookings_status ON bookings(status, created_at);&lt;br&gt;
The PostGIS extension on Supabase made geographic queries trivial. Finding the 5 nearest available drivers to a pickup point became a single query:&lt;br&gt;
sqlSELECT &lt;br&gt;
  id, &lt;br&gt;
  full_name,&lt;br&gt;
  ST_Distance(current_location, $1::geography) AS distance_meters&lt;br&gt;
FROM drivers&lt;br&gt;
WHERE status = 'available'&lt;br&gt;
  AND ST_DWithin(current_location, $1::geography, 5000) -- 5km radius&lt;br&gt;
ORDER BY current_location &amp;lt;-&amp;gt; $1::geography&lt;br&gt;
LIMIT 5;&lt;br&gt;
This query runs in ~3-8ms even with thousands of bookings in history.&lt;/p&gt;

&lt;p&gt;The Dispatch Algorithm&lt;br&gt;
The hardest engineering problem was the dispatch algorithm. Naive "nearest driver" doesn't work because:&lt;/p&gt;

&lt;p&gt;A driver 1km away with rating 4.2 is worse than one 1.5km away with rating 4.9&lt;br&gt;
A driver who just finished a ride 2km away might decline; a driver idle for 20 minutes will accept&lt;br&gt;
Some drivers prefer specific zones; Friday-night dispatching to a known difficult area shouldn't go to a new driver&lt;/p&gt;

&lt;p&gt;We ended up with a weighted scoring algorithm:&lt;br&gt;
javascript// Simplified scoring logic&lt;br&gt;
function scoreDriver(driver, booking) {&lt;br&gt;
  const distanceKm = haversine(driver.location, booking.pickup);&lt;/p&gt;

&lt;p&gt;// Distance: closer is better, but with diminishing returns&lt;br&gt;
  const distanceScore = Math.max(0, 100 - (distanceKm * 15));&lt;/p&gt;

&lt;p&gt;// Rating: higher is better (4.0 = 60pts, 5.0 = 100pts)&lt;br&gt;
  const ratingScore = (driver.rating - 4) * 100;&lt;/p&gt;

&lt;p&gt;// Idle time: drivers idle 5-20 min are eager&lt;br&gt;
  const idleMinutes = (Date.now() - driver.last_active) / 60000;&lt;br&gt;
  const idleScore = idleMinutes &amp;gt; 5 &amp;amp;&amp;amp; idleMinutes &amp;lt; 20 ? 20 : 0;&lt;/p&gt;

&lt;p&gt;// Zone familiarity: bonus for drivers with rides in this area&lt;br&gt;
  const zoneScore = driver.zones.includes(booking.pickup_zone) ? 15 : 0;&lt;/p&gt;

&lt;p&gt;// Weights&lt;br&gt;
  return (&lt;br&gt;
    distanceScore * 0.5 + &lt;br&gt;
    ratingScore * 0.25 + &lt;br&gt;
    idleScore * 0.15 + &lt;br&gt;
    zoneScore * 0.10&lt;br&gt;
  );&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;async function dispatchBooking(bookingId) {&lt;br&gt;
  const booking = await getBooking(bookingId);&lt;br&gt;
  const candidates = await getNearbyAvailableDrivers(booking.pickup, 5000);&lt;/p&gt;

&lt;p&gt;if (candidates.length === 0) {&lt;br&gt;
    return { error: 'no_drivers_available' };&lt;br&gt;
  }&lt;/p&gt;

&lt;p&gt;const ranked = candidates&lt;br&gt;
    .map(d =&amp;gt; ({ driver: d, score: scoreDriver(d, booking) }))&lt;br&gt;
    .sort((a, b) =&amp;gt; b.score - a.score);&lt;/p&gt;

&lt;p&gt;// Try top 3 in parallel with race condition handling&lt;br&gt;
  for (const { driver } of ranked.slice(0, 3)) {&lt;br&gt;
    const accepted = await offerToDriver(driver.id, bookingId, 30_000);&lt;br&gt;
    if (accepted) {&lt;br&gt;
      return { driver_id: driver.id };&lt;br&gt;
    }&lt;br&gt;
  }&lt;/p&gt;

&lt;p&gt;return { error: 'all_drivers_declined' };&lt;br&gt;
}&lt;br&gt;
The 30-second offer window with sequential fallback proved critical. Customers wouldn't wait longer than 60 seconds for confirmation.&lt;/p&gt;

&lt;p&gt;Real-time Updates with Supabase&lt;br&gt;
The customer experience requires live updates: "Your driver is 3 minutes away" → "Your driver has arrived" → "Trip in progress."&lt;br&gt;
Supabase's realtime PostgreSQL subscriptions made this surprisingly simple:&lt;br&gt;
javascript// Customer's frontend subscribes to their booking&lt;br&gt;
const channel = supabase&lt;br&gt;
  .channel(&lt;code&gt;booking_${bookingId}&lt;/code&gt;)&lt;br&gt;
  .on(&lt;br&gt;
    'postgres_changes',&lt;br&gt;
    {&lt;br&gt;
      event: 'UPDATE',&lt;br&gt;
      schema: 'public',&lt;br&gt;
      table: 'bookings',&lt;br&gt;
      filter: &lt;code&gt;id=eq.${bookingId}&lt;/code&gt;&lt;br&gt;
    },&lt;br&gt;
    (payload) =&amp;gt; {&lt;br&gt;
      updateUI(payload.new);&lt;br&gt;
    }&lt;br&gt;
  )&lt;br&gt;
  .subscribe();&lt;br&gt;
For driver location updates, we initially used PostgreSQL realtime as well — sending location every 5 seconds. This crashed our database connections at scale.&lt;br&gt;
The fix: a separate Supabase Edge Function that wrote driver locations to a Redis-like cache (we used Upstash) and only persisted to PostgreSQL every 30 seconds for analytics. Real-time location was streamed via WebSocket directly:&lt;br&gt;
javascript// Driver app sends location to Edge Function&lt;br&gt;
async function broadcastLocation(driverId, lat, lng) {&lt;br&gt;
  await fetch('/api/driver-location', {&lt;br&gt;
    method: 'POST',&lt;br&gt;
    body: JSON.stringify({ driverId, lat, lng, ts: Date.now() })&lt;br&gt;
  });&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;// Edge function broadcasts to customer's WebSocket channel&lt;br&gt;
// (only if customer has active booking with this driver)&lt;br&gt;
This reduced database load by 95% while keeping sub-second update latency.&lt;/p&gt;

&lt;p&gt;Multi-language Support: The Hidden Challenge&lt;br&gt;
Moldova has 3 active languages: Romanian (official), Russian (widely spoken), and English (for tourists). The naive approach — t('booking.confirm') — falls apart when:&lt;/p&gt;

&lt;p&gt;Drivers receive SMS dispatch in Romanian&lt;br&gt;
The same booking shows in admin dashboard in English&lt;br&gt;
Customer sees confirmation in Russian&lt;br&gt;
Receipt PDF is in Romanian&lt;/p&gt;

&lt;p&gt;We built a language matrix at the database level:&lt;br&gt;
sqlCREATE TABLE translations (&lt;br&gt;
  key TEXT NOT NULL,&lt;br&gt;
  language TEXT NOT NULL,&lt;br&gt;
  value TEXT NOT NULL,&lt;br&gt;
  context TEXT,&lt;br&gt;
  PRIMARY KEY (key, language, context)&lt;br&gt;
);&lt;br&gt;
Each user/driver has a preferred_language field. SMS, push notifications, emails, and PDFs all query this table. The customer-facing UI uses Next.js i18n, but server-generated content (notifications, receipts) goes through the database.&lt;br&gt;
A side benefit: we let customer support staff edit translations in real-time without redeploying.&lt;/p&gt;

&lt;p&gt;Payment Integration: Card + Cash Reality&lt;br&gt;
Western tutorials assume Stripe-only. In Moldova, 70% of payments are cash. This required dual-flow support:&lt;br&gt;
javascript// Payment options shown to customer&lt;br&gt;
const PAYMENT_METHODS = {&lt;br&gt;
  card: {&lt;br&gt;
    flow: 'stripe',&lt;br&gt;
    capture: 'immediate',&lt;br&gt;
    deposit: true,&lt;br&gt;
  },&lt;br&gt;
  cash: {&lt;br&gt;
    flow: 'manual',&lt;br&gt;
    capture: 'on_completion',&lt;br&gt;
    deposit: false,&lt;br&gt;
  },&lt;br&gt;
};&lt;/p&gt;

&lt;p&gt;// On booking completion&lt;br&gt;
async function completeBooking(bookingId, paymentMethod) {&lt;br&gt;
  const booking = await getBooking(bookingId);&lt;/p&gt;

&lt;p&gt;if (paymentMethod === 'card') {&lt;br&gt;
    await stripe.paymentIntents.capture(booking.stripe_intent_id);&lt;br&gt;
  } else {&lt;br&gt;
    // Cash: driver confirms collection in app&lt;br&gt;
    await markBookingCashCollected(bookingId);&lt;br&gt;
    await scheduleDriverPayout(booking.driver_id);&lt;br&gt;
  }&lt;/p&gt;

&lt;p&gt;await sendReceipt(booking);&lt;br&gt;
  await updateDriverEarnings(booking.driver_id, booking.final_price);&lt;br&gt;
}&lt;br&gt;
Cash handling required additional complexity: driver shift reconciliation, daily settlement, and a "trust score" system to flag drivers with consistent cash discrepancies.&lt;/p&gt;

&lt;p&gt;Deployment &amp;amp; Monitoring&lt;br&gt;
Deploying with Vercel + Supabase was almost too easy:&lt;br&gt;
bash# Push to main branch&lt;br&gt;
git push origin main&lt;/p&gt;

&lt;h1&gt;
  
  
  Vercel automatically:
&lt;/h1&gt;

&lt;h1&gt;
  
  
  1. Builds Next.js app
&lt;/h1&gt;

&lt;h1&gt;
  
  
  2. Runs migrations on Supabase
&lt;/h1&gt;

&lt;h1&gt;
  
  
  3. Deploys edge functions
&lt;/h1&gt;

&lt;h1&gt;
  
  
  4. Updates DNS
&lt;/h1&gt;

&lt;p&gt;The catch: edge functions have a 10-second execution limit. Long-running operations (driver payouts, daily reconciliation) had to move to scheduled Supabase functions or external workers.&lt;br&gt;
Sentry caught most production issues, but the most valuable monitoring was custom: a real-time dashboard showing active bookings, average ETA, driver utilization, and dispatch success rate. When dispatch_success_rate dropped below 85%, alerts fired.&lt;/p&gt;

&lt;p&gt;What We'd Do Differently&lt;br&gt;
If starting today, we'd consider:&lt;/p&gt;

&lt;p&gt;TanStack Query instead of native React state for booking data — we hit cache invalidation issues with manual implementation&lt;br&gt;
Bun instead of Node.js for backend functions — ~3x faster cold starts&lt;br&gt;
PartyKit or Cloudflare Durable Objects for real-time location instead of Upstash + Edge Functions — simpler architecture&lt;br&gt;
PostHog for product analytics from day one — we added it 6 months in and lost valuable behavior data&lt;/p&gt;

&lt;p&gt;We don't regret choosing Supabase. The combination of PostgreSQL + Auth + Realtime + Storage + Edge Functions in one service saved us months of integration work.&lt;/p&gt;

&lt;p&gt;Results After 12 Months&lt;br&gt;
The numbers (rounded for simplicity):&lt;/p&gt;

&lt;p&gt;Average dispatch time: 22 seconds (down from 8+ minutes manual)&lt;br&gt;
Booking-to-pickup time: 18 minutes average&lt;br&gt;
Customer satisfaction: 4.9/5 across 27+ Google reviews&lt;br&gt;
Driver retention: 85% after 3 months (industry avg is ~50%)&lt;br&gt;
Peak concurrent bookings: 40+ on weekend nights&lt;br&gt;
Infrastructure cost per booking: ~$0.12&lt;/p&gt;

&lt;p&gt;The system handles current volume comfortably. The next bottleneck will be human (driver capacity) rather than technical.&lt;/p&gt;

&lt;p&gt;Closing Thoughts&lt;br&gt;
Building a sober driver platform in a market of 2.5 million people taught us that "small market" doesn't mean "simple problem." The legal context, language complexity, payment culture, and trust dynamics required engineering solutions that wouldn't appear in a typical SaaS playbook.&lt;br&gt;
For technical founders building local services in non-Western markets: don't over-index on Silicon Valley patterns. Cash payments are real. SMS still beats push notifications for older demographics. Local language nuance matters more than you think.&lt;br&gt;
The full stack — Node.js, Supabase, Vercel, Next.js — proved that small teams can ship serious infrastructure without enterprise budgets.&lt;br&gt;
If you're working on similar problems (dispatch systems, real-time tracking, multi-language services in emerging markets), I'm happy to discuss specifics in the comments.&lt;/p&gt;

&lt;p&gt;The legal context for this project is covered in detail in our Moldova DUI legislation guide on Medium.&lt;br&gt;
The platform itself runs at plusrent.md.&lt;/p&gt;

</description>
      <category>node</category>
      <category>supabase</category>
      <category>showdev</category>
      <category>realworld</category>
    </item>
    <item>
      <title>Making My Website AI-Ready: llms.txt, Schema.org, and What Actually Changed</title>
      <dc:creator>Lilian</dc:creator>
      <pubDate>Fri, 24 Apr 2026 01:38:08 +0000</pubDate>
      <link>https://dev.to/bostan/making-my-website-ai-ready-llmstxt-schemaorg-and-what-actually-changed-5ccm</link>
      <guid>https://dev.to/bostan/making-my-website-ai-ready-llmstxt-schemaorg-and-what-actually-changed-5ccm</guid>
      <description>&lt;p&gt;Hey DEV community! A few months ago I &lt;a href="https://dev.to/bostan/how-i-built-a-full-stack-car-rental-platform-in-moldova-with-nodejs-supabase-vercel-2c9m"&gt;shared how I built a car rental platform in Moldova&lt;/a&gt;. Since then, I've been thinking about something that didn't exist as a concern when I started: &lt;strong&gt;how do AI assistants discover and describe my site?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If someone asks Gemini "what's a good car rental in Moldova?", or "sober driver chisinau" will it mention my business? If Claude cites a source about sober driver services in Chișinău, will it be &lt;em&gt;my&lt;/em&gt; page?&lt;/p&gt;

&lt;p&gt;Traditional SEO assumes humans read your site. AI-era SEO needs to assume both humans AND AI agents do. Here's what I actually did — and what changed.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem Nobody Warned Me About
&lt;/h2&gt;

&lt;p&gt;In 2024, I noticed something weird. My site ranked well on Google, but when I asked Claude or Perplexity about car rental in Chișinău, my business either wasn't mentioned, or was described with outdated info from training data.&lt;/p&gt;

&lt;p&gt;The issue: AI crawlers work differently from Googlebot.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GPTBot, ClaudeBot, PerplexityBot, Claude-SearchBot&lt;/strong&gt; — these are real, active crawlers&lt;/li&gt;
&lt;li&gt;They respect &lt;code&gt;robots.txt&lt;/code&gt;, but most sites don't explicitly address them&lt;/li&gt;
&lt;li&gt;They parse structured data, but rely heavily on clear, semantic content&lt;/li&gt;
&lt;li&gt;Without explicit signals, your site gets &lt;strong&gt;ignored or misrepresented&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Traditional SEO focuses on Googlebot. AI-era SEO needs to think about &lt;strong&gt;a dozen different crawlers&lt;/strong&gt;, each with different priorities.&lt;/p&gt;

&lt;h2&gt;
  
  
  Meet llms.txt
&lt;/h2&gt;

&lt;p&gt;Enter &lt;a href="https://llmstxt.org/" rel="noopener noreferrer"&gt;llms.txt&lt;/a&gt; — a proposed standard (think &lt;code&gt;robots.txt&lt;/code&gt; but for AI). It's a markdown file that tells AI systems:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Who you are&lt;/li&gt;
&lt;li&gt;What your site is about&lt;/li&gt;
&lt;li&gt;Key URLs they should know&lt;/li&gt;
&lt;li&gt;What's the most important information&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It's not a W3C standard yet, but Anthropic, OpenAI, and others are increasingly looking at it. The cost to implement is &lt;strong&gt;15 minutes&lt;/strong&gt;. The upside is significant.&lt;/p&gt;

&lt;p&gt;Here's a simplified version of mine:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gh"&gt;# PlusRent.md&lt;/span&gt;
&lt;span class="gt"&gt;
&amp;gt; Car rental and designated sober driver service in Chișinău, Moldova. &lt;/span&gt;
&lt;span class="gt"&gt;&amp;gt; Operating since 2022, 20+ vehicles, 24/7 support, 27 Google reviews (5.0 stars).&lt;/span&gt;

&lt;span class="gu"&gt;## Services&lt;/span&gt;
&lt;span class="p"&gt;
-&lt;/span&gt; &lt;span class="gs"&gt;**Car Rental**&lt;/span&gt;: Economy (€15/day), Standard (€31/day), Premium BMW/Mercedes (€61/day)
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**Sober Driver (Șofer Treaz)**&lt;/span&gt;: From 150 MDL/hour. Available 24/7 in Chișinău (30 km radius).
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**Airport Delivery**&lt;/span&gt;: Free to Chișinău Airport (business hours), available for Iași Airport.

&lt;span class="gu"&gt;## Key Pages&lt;/span&gt;
&lt;span class="p"&gt;
-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Main&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://plusrent.md/ro/&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;: Service overview
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Car Catalog&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://plusrent.md/ro/cars&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;: 20 vehicles with pricing
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Sober Driver&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://plusrent.md/ro/sofer-treaz&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;: Designated driver service
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Contact&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://plusrent.md/ro/contact&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;: +373 60 000 500, 24/7

&lt;span class="gu"&gt;## Key Facts&lt;/span&gt;
&lt;span class="p"&gt;
-&lt;/span&gt; 3 languages: Romanian, Russian, English
&lt;span class="p"&gt;-&lt;/span&gt; 439+ completed orders
&lt;span class="p"&gt;-&lt;/span&gt; Address: Meșterul Manole 20, MD-2044, Chișinău
&lt;span class="p"&gt;-&lt;/span&gt; Coordinates: 47.013737, 28.886408
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Available at &lt;a href="https://plusrent.md/llms.txt" rel="noopener noreferrer"&gt;plusrent.md/llms.txt&lt;/a&gt; if you want a real example.&lt;/p&gt;

&lt;h2&gt;
  
  
  Schema.org: Still Essential, Now Also for AI
&lt;/h2&gt;

&lt;p&gt;I already had basic Schema.org markup from the first iteration. But I went deeper, adding multiple interconnected types:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// AutoRental — primary business schema&lt;/span&gt;
&lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@context&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://schema.org&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@type&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;AutoRental&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;name&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;PlusRent&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;priceRange&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;€15-€120&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;areaServed&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
    &lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@type&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;City&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;name&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Chișinău&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;
    &lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@type&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Country&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;name&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Moldova&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="p"&gt;],&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;makesOffer&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
    &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@type&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Offer&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;name&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Economy Car Rental&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;price&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;15&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;priceCurrency&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;EUR&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
    &lt;span class="c1"&gt;// ...&lt;/span&gt;
  &lt;span class="p"&gt;]&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The key insight: &lt;strong&gt;AI systems parse multiple schema blocks&lt;/strong&gt;. Having separate schemas for &lt;code&gt;Organization&lt;/code&gt;, &lt;code&gt;AutoRental&lt;/code&gt;, &lt;code&gt;FAQPage&lt;/code&gt;, &lt;code&gt;BreadcrumbList&lt;/code&gt;, and &lt;code&gt;LocalBusiness&lt;/code&gt; gives AI systems multiple signals confirming what your site is about.&lt;/p&gt;

&lt;p&gt;One mistake I made initially: using &lt;code&gt;@type: "Product"&lt;/code&gt; for services. Google and SEMrush both flagged this, requiring e-commerce fields like &lt;code&gt;shippingDetails&lt;/code&gt; and &lt;code&gt;hasMerchantReturnPolicy&lt;/code&gt;. For a service business, use &lt;code&gt;Service&lt;/code&gt; or domain-specific types like &lt;code&gt;AutoRental&lt;/code&gt;, &lt;code&gt;Vehicle&lt;/code&gt;, or &lt;code&gt;LodgingBusiness&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Robots.txt for the AI Era
&lt;/h2&gt;

&lt;p&gt;Most robots.txt files are written for one crawler: Googlebot. Here's a snippet from mine, explicitly addressing AI bots:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight conf"&gt;&lt;code&gt;&lt;span class="c"&gt;# Default rules apply to everyone
&lt;/span&gt;&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: *
&lt;span class="n"&gt;Allow&lt;/span&gt;: /
&lt;span class="n"&gt;Disallow&lt;/span&gt;: /&lt;span class="n"&gt;admin&lt;/span&gt;
&lt;span class="n"&gt;Disallow&lt;/span&gt;: /&lt;span class="n"&gt;api&lt;/span&gt;/

&lt;span class="c"&gt;# AI Crawlers — explicitly allowed with same restrictions
&lt;/span&gt;&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;GPTBot&lt;/span&gt;
&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;ClaudeBot&lt;/span&gt;
&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;anthropic&lt;/span&gt;-&lt;span class="n"&gt;ai&lt;/span&gt;
&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;PerplexityBot&lt;/span&gt;
&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;Google&lt;/span&gt;-&lt;span class="n"&gt;Extended&lt;/span&gt;
&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;Applebot&lt;/span&gt;-&lt;span class="n"&gt;Extended&lt;/span&gt;
&lt;span class="n"&gt;Disallow&lt;/span&gt;: /&lt;span class="n"&gt;admin&lt;/span&gt;
&lt;span class="n"&gt;Disallow&lt;/span&gt;: /&lt;span class="n"&gt;api&lt;/span&gt;/

&lt;span class="c"&gt;# Point them to machine-readable summary
&lt;/span&gt;&lt;span class="n"&gt;Sitemap&lt;/span&gt;: &lt;span class="n"&gt;https&lt;/span&gt;://&lt;span class="n"&gt;plusrent&lt;/span&gt;.&lt;span class="n"&gt;md&lt;/span&gt;/&lt;span class="n"&gt;sitemap&lt;/span&gt;.&lt;span class="n"&gt;xml&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Being explicit matters. Some AI companies treat "no rules for my bot = assume disallowed" as default behavior. Being explicit about what's allowed prevents accidental exclusion.&lt;/p&gt;

&lt;h2&gt;
  
  
  Testing Actual Results
&lt;/h2&gt;

&lt;p&gt;I tested the same question before and after on Claude, ChatGPT, and Perplexity: &lt;em&gt;"What car rental services are available in Chișinău, Moldova?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Generic answers mentioning "various international companies"&lt;/li&gt;
&lt;li&gt;Outdated info&lt;/li&gt;
&lt;li&gt;My business rarely mentioned&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;After (2-3 weeks post-implementation):&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Specific mentions of PlusRent with accurate service descriptions&lt;/li&gt;
&lt;li&gt;Correct pricing quoted&lt;/li&gt;
&lt;li&gt;Sober driver service mentioned (an unusual service AI systems wouldn't typically know about)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The effect isn't instant — AI systems rebuild their indices on their own schedules — but over weeks, the quality of AI-generated responses about my business improved substantially.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Actually Moved the Needle
&lt;/h2&gt;

&lt;p&gt;Ranking these by impact from my experience:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Schema.org done right&lt;/strong&gt; — biggest impact. AI systems parse structured data carefully.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;llms.txt&lt;/strong&gt; — cheap win, clear signal.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Explicit AI bot rules in robots.txt&lt;/strong&gt; — marginal but easy.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Clear semantic HTML&lt;/strong&gt; — no divs-with-classes when &lt;code&gt;&amp;lt;article&amp;gt;&lt;/code&gt;, &lt;code&gt;&amp;lt;section&amp;gt;&lt;/code&gt;, &lt;code&gt;&amp;lt;nav&amp;gt;&lt;/code&gt; exist.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unique meta descriptions per page&lt;/strong&gt; — AI uses these as summaries.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The underrated factor: &lt;strong&gt;having multiple external sources mentioning your business&lt;/strong&gt;. AI systems use citations to validate claims. If your site says "24/7 service" but three independent blogs and review platforms also say it, AI trusts it more.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;AI-ready SEO is just good SEO, but more explicit&lt;/strong&gt;. You're not gaming AI — you're helping it understand you.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;llms.txt is cheap&lt;/strong&gt; — 15 minutes of work for potentially significant upside.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Schema.org types matter&lt;/strong&gt;. Don't force &lt;code&gt;Product&lt;/code&gt; on a service business.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multiple schemas &amp;gt; one giant schema&lt;/strong&gt;. Give AI multiple validation signals.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;External citations build trust&lt;/strong&gt;. No amount of on-site optimization replaces real third-party mentions.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The wild part? None of this is revolutionary. It's the same SEO principles — clarity, semantic correctness, helpful markup — applied to a broader audience of readers that now includes AI agents.&lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🌐 &lt;a href="https://plusrent.md/ro/" rel="noopener noreferrer"&gt;plusrent.md&lt;/a&gt; — live site&lt;/li&gt;
&lt;li&gt;📄 &lt;a href="https://plusrent.md/llms.txt" rel="noopener noreferrer"&gt;plusrent.md/llms.txt&lt;/a&gt; — real llms.txt example&lt;/li&gt;
&lt;li&gt;📖 &lt;a href="https://llmstxt.org/" rel="noopener noreferrer"&gt;llmstxt.org&lt;/a&gt; — the proposed standard&lt;/li&gt;
&lt;li&gt;🚗 &lt;a href="https://dev.to/bostan/how-i-built-a-full-stack-car-rental-platform-in-moldova-with-nodejs-supabase-vercel-2c9m"&gt;First post&lt;/a&gt; — how this whole thing got built&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Happy to answer questions in the comments. What have you done to make your site AI-discoverable?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>seo</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
    <item>
      <title>How I Built a Full-Stack Car Rental Platform in Moldova with Node.js, Supabase &amp; Vercel</title>
      <dc:creator>Lilian</dc:creator>
      <pubDate>Sun, 12 Apr 2026 01:20:08 +0000</pubDate>
      <link>https://dev.to/bostan/how-i-built-a-full-stack-car-rental-platform-in-moldova-with-nodejs-supabase-vercel-2c9m</link>
      <guid>https://dev.to/bostan/how-i-built-a-full-stack-car-rental-platform-in-moldova-with-nodejs-supabase-vercel-2c9m</guid>
      <description>&lt;p&gt;Hey DEV community! I want to share how I built a web platform for a small car rental business in Chișinău, Moldova. I'll cover the tech stack, multilingual SEO challenges, and lessons learned.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;I needed a platform to manage a car fleet: vehicle catalog with dynamic pricing, booking system, cost calculator, multilingual UI (Romanian, Russian, English), and an admin panel. Budget was tight — no $200/month SaaS solutions.&lt;/p&gt;

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

&lt;p&gt;After evaluating options, I went with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend:&lt;/strong&gt; Vanilla JS + Bootstrap + i18next for internationalization&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Backend:&lt;/strong&gt; Node.js + Express&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database:&lt;/strong&gt; Supabase (PostgreSQL)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hosting:&lt;/strong&gt; Vercel (frontend) + separate server for API&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CDN:&lt;/strong&gt; Cloudflare&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Why not React? For a landing page with a booking form, it's overkill. Vanilla JS renders faster, which is critical for Core Web Vitals and SEO.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project Structure
&lt;/h2&gt;

&lt;p&gt;├── public/&lt;br&gt;
│   ├── index.html&lt;br&gt;
│   ├── cars.html&lt;br&gt;
│   ├── sofer-treaz.html    # Sober driver service&lt;br&gt;
│   ├── css/&lt;br&gt;
│   ├── js/&lt;br&gt;
│   │   ├── i18n-init.js&lt;br&gt;
│   │   ├── dynamic-cars-loader.js&lt;br&gt;
│   │   └── validation-booking.js&lt;br&gt;
│   └── locales/&lt;br&gt;
│       ├── ro.json&lt;br&gt;
│       ├── ru.json&lt;br&gt;
│       └── en.json&lt;br&gt;
├── server/&lt;br&gt;
│   ├── api/&lt;br&gt;
│   │   ├── cars.js&lt;br&gt;
│   │   ├── bookings.js&lt;br&gt;
│   │   └── fee-settings.js&lt;br&gt;
│   └── supabase.js&lt;/p&gt;
&lt;h2&gt;
  
  
  Multilingual SEO: The Tricky Part
&lt;/h2&gt;

&lt;p&gt;Moldova is multilingual: Romanian, Russian, and English for tourists. I used i18next with JSON files for each language.&lt;/p&gt;

&lt;p&gt;The main problem: &lt;strong&gt;Google renders pages without JavaScript about 30% of the time&lt;/strong&gt;. This means &lt;code&gt;data-i18n&lt;/code&gt; attributes don't get translated and Google only sees Romanian fallback text.&lt;/p&gt;

&lt;p&gt;Solution: for critical SEO blocks, I added &lt;strong&gt;static HTML in all three languages&lt;/strong&gt; directly in the page. &lt;code&gt;data-i18n&lt;/code&gt; is only used for UI elements (buttons, menus, forms).&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="c"&gt;&amp;lt;!-- Static SEO block — Google can see all languages --&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;Închirieri auto Chișinău — text in Romanian...&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;Аренда авто Кишинёв — text in Russian...&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;Car rental Chisinau — text in English...&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I also added hreflang tags even though the URL is the same for all languages:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;link&lt;/span&gt; &lt;span class="na"&gt;rel=&lt;/span&gt;&lt;span class="s"&gt;"alternate"&lt;/span&gt; &lt;span class="na"&gt;hreflang=&lt;/span&gt;&lt;span class="s"&gt;"ro"&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"https://plusrent.md/"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;link&lt;/span&gt; &lt;span class="na"&gt;rel=&lt;/span&gt;&lt;span class="s"&gt;"alternate"&lt;/span&gt; &lt;span class="na"&gt;hreflang=&lt;/span&gt;&lt;span class="s"&gt;"ru"&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"https://plusrent.md/"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;link&lt;/span&gt; &lt;span class="na"&gt;rel=&lt;/span&gt;&lt;span class="s"&gt;"alternate"&lt;/span&gt; &lt;span class="na"&gt;hreflang=&lt;/span&gt;&lt;span class="s"&gt;"en"&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"https://plusrent.md/"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Dynamic Pricing
&lt;/h2&gt;

&lt;p&gt;Rental prices depend on duration: 1-3 days = one price, 4-7 = another, 8+ = third. I implemented this with a JSON price policy in the database:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"1-3"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"35"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"4-7"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"30"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"8-14"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"25"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"15+"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"20"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The frontend calculator parses this structure and computes cost including additional fees (night delivery, airport). Rates are loaded from the server via &lt;code&gt;/api/fee-settings/tariffs&lt;/code&gt; — so managers can change prices from the admin panel without redeploying.&lt;/p&gt;

&lt;h2&gt;
  
  
  Structured Data for Local Business
&lt;/h2&gt;

&lt;p&gt;Google Rich Snippets are a free way to stand out in search. I added multiple schema blocks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;AutoRental&lt;/code&gt; — company info&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;Service&lt;/code&gt; — service descriptions&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;FAQPage&lt;/code&gt; — Q&amp;amp;A in two languages (for Featured Snippets)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;BreadcrumbList&lt;/code&gt; — navigation&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;Organization&lt;/code&gt; — organization data&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;FAQ Schema in two languages gave an interesting result: Google shows FAQ blocks for both Romanian and Russian queries from a single page.&lt;/p&gt;

&lt;h2&gt;
  
  
  Competing Against Exact-Match Domains
&lt;/h2&gt;

&lt;p&gt;The hardest challenge was organic ranking. Competitors with domains like &lt;code&gt;chirieauto.md&lt;/code&gt; rank at the top by default. Google historically gives advantages to exact-match domains.&lt;/p&gt;

&lt;p&gt;My approach: maximum technical optimization (structured data, Core Web Vitals, multilingual content) + backlinks from platforms (Crunchbase, LinkedIn, TripAdvisor, GitHub). Within 3 months, I reached top 2-5 for "sofer treaz chisinau" competing against an exact-match domain.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Skip React for simple sites&lt;/strong&gt; — Vanilla JS + good CSS is faster and cheaper&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multilingual SEO needs static HTML&lt;/strong&gt; — don't rely only on JS translations&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Structured Data is a must&lt;/strong&gt; for local business SEO&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Supabase&lt;/strong&gt; is an excellent free Firebase alternative for MVPs&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vercel's free tier&lt;/strong&gt; handles up to 10K visitors/month easily&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🌐 &lt;a href="https://plusrent.md" rel="noopener noreferrer"&gt;plusrent.md&lt;/a&gt; — the live platform&lt;/li&gt;
&lt;li&gt;🚗 &lt;a href="https://plusrent.md/sofer-treaz" rel="noopener noreferrer"&gt;Sober Driver Service&lt;/a&gt; — unique designated driver feature&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for reading! Happy to answer any questions in the comments.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>seo</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
