From 29b8819021b3547caaeeab3c2a9d3cf7eb043cef Mon Sep 17 00:00:00 2001 From: hamed <15238-genius.ha@users.noreply.drupalcode.org> Date: Sun, 19 Jul 2026 13:19:43 +0330 Subject: [PATCH] refactor(docker): update Dockerfile for Next.js 15 and enhance build stages --- components/clinics/index.js | 6 ------ components/doctors/index.js | 9 --------- 2 files changed, 15 deletions(-) diff --git a/components/clinics/index.js b/components/clinics/index.js index 9a5ac28..172cfac 100644 --- a/components/clinics/index.js +++ b/components/clinics/index.js @@ -13,7 +13,6 @@ import states from "@/data/state.json"; import cities from "@/data/city.json"; import { isRootCity } from "@/lib/rootCity"; import { resolveCityDisplayName } from "@/lib/domainHelpers"; -import { buildClinicsIntro } from "@/lib/listingIntro"; function ClinicsPage({ clinics, matchedCity, matchedState }) { const searchParams = useSearchParams(); @@ -50,11 +49,6 @@ function ClinicsPage({ clinics, matchedCity, matchedState }) { setFilteredClinics={setFilteredClinics} /> -
- {buildClinicsIntro(resolveCityDisplayName(matchedCity))} -
-- {buildDoctorsIntro(resolveCityDisplayName(matchedCity))} -