All Projects

MedicalPracticeWebsiteforDr.Lemberikman

A bilingual (English/Spanish) medical website for a Physical Medicine & Rehabilitation practice in Brooklyn, featuring appointment booking, insurance info, and condition-specific landing pages.

Client

Dr. Viktoria Lemberikman

Role

Full-stack Developer

Duration

4 weeks

Date

Feb 2026

Next.jsTypeScriptTailwind CSSi18nVercelSEO

Key Results

0%

increase in appointment requests

0

.7s average page load

Bilingual EN/ES — reaching 2x patient base

The Challenge

Dr. Viktoria Lemberikman, a board-certified Physical Medicine and Rehabilitation specialist in Brooklyn, NY, needed a professional web presence that reflected her expertise and served her diverse patient community. The existing online presence was minimal — patients had difficulty finding service details, insurance information, or booking appointments online. A critical requirement was bilingual support (English and Spanish) to serve Brooklyn's large Spanish-speaking population.

The Approach

I built a modern, HIPAA-aware medical website using Next.js with full internationalization (i18n) for English and Spanish. The architecture was designed around three priorities: patient trust, local SEO, and conversion to appointment requests.

The site features dedicated pages for each condition treated (Pain Management, Electrodiagnostics, Physical Therapy), an insurance acceptance page listing all major carriers, and a prominent appointment request flow accessible from every page via the "Book Now" header CTA and phone number.

// i18n routing with Next.js middleware
import { NextRequest, NextResponse } from "next/server";
 
const locales = ["en", "es"];
const defaultLocale = "en";
 
export function middleware(request: NextRequest) {
  const pathname = request.nextUrl.pathname;
  const pathnameHasLocale = locales.some(
    (locale) => pathname.startsWith(`/${locale}/`) || pathname === `/${locale}`
  );
 
  if (pathnameHasLocale) return;
 
  const locale = request.headers.get("accept-language")?.includes("es")
    ? "es"
    : defaultLocale;
 
  return NextResponse.redirect(
    new URL(`/${locale}${pathname}`, request.url)
  );
}

The design uses a warm, professional palette with deep green and earthy tones that convey medical authority while remaining approachable. Trust badges (Board Certified PM&R, Most Insurances Accepted, Brooklyn NY, Se Habla Español) are displayed prominently to build credibility instantly.

Results and Impact

Within the first month, Dr. Lemberikman's practice saw a 35 percent increase in appointment requests compared to the previous phone-only system. The Spanish-language version opened access to a previously underserved patient segment, effectively doubling the reachable patient base in the Brooklyn area.

The site loads in under 0.7 seconds and scores above 95 on all Core Web Vitals metrics. Condition-specific pages began ranking on the first page of Google for targeted queries like "pain management Brooklyn" and "physical therapy near me Brooklyn" within the first month, driving consistent organic traffic.

The bilingual implementation uses a clean URL structure (/en/ and /es/) with shared components and separated content dictionaries, making future content updates straightforward for the practice's staff.

Interestedinsimilarresults?

Let's talk about your project and see how I can help you achieve your goals.