diff --git a/src/components/committees/committee.jsx b/src/components/committees/committee.jsx
index e666d7d..87cba78 100644
--- a/src/components/committees/committee.jsx
+++ b/src/components/committees/committee.jsx
@@ -4,31 +4,30 @@ import styles from "@/styles/components/committees/committee.module.scss";
import Image from "next/image";
import Link from "next/link";
-export async function getStaticProps({ locale }) {
- return {
- props: {
- messages: (await import(`@/messages/${locale}.json`)).default,
- },
- };
-}
+// export async function getStaticProps({ locale }) {
+// return {
+// props: {
+// messages: (await import(`@/messages/${locale}.json`)).default,
+// },
+// };
+// }
-export default function CommitteeCard({ props }) {
- const t = useTranslations(`Committees.cards.${props}`);
+export default function CommitteeCard({ name, locale }) {
+ const t = useTranslations("Committees");
return (
-
+
-
{t("name")}
+
{t(`${name}.committee_name_${locale}`)}
);
diff --git a/src/components/committees/committeeDesription.jsx b/src/components/committees/committeeDesription.jsx
index fe4ecf6..3ecc52f 100644
--- a/src/components/committees/committeeDesription.jsx
+++ b/src/components/committees/committeeDesription.jsx
@@ -4,11 +4,10 @@ import React from "react";
import { useTranslations } from "next-intl";
import Link from "next/link";
-/* add and import styles */
-/* view and test it out by importing it to the respective page */
-export default function CommitteeDescription({ props }) {
- const l = useTranslations("Committees");
- const t = useTranslations(`Committees.cards.${props}`);
+export default function CommitteeDescription({ name, locale }) {
+ const t = useTranslations("Committees");
+ const g = useTranslations("General");
+
return (
)}
{/* Button with styling */}
diff --git a/src/components/header/header.jsx b/src/components/header/header.jsx
index ec69ffa..29c27e5 100644
--- a/src/components/header/header.jsx
+++ b/src/components/header/header.jsx
@@ -7,8 +7,8 @@ import { RxCross1 } from "react-icons/rx";
import { IoMenuOutline } from "react-icons/io5";
import LangDropDown from "../dropDown/dropDown";
-export default function Header() {
- const t = useTranslations("Header");
+export default function Header({ locale }) {
+ const t = useTranslations("General");
// use state for links
const [activeLinks, setActiveLinks] = useState([
false,
@@ -49,13 +49,11 @@ export default function Header() {
width={110}
height={110}
alt="Paul Hom logo"
- priority={true}
- href="/"
/>
-
{t("clinic_name")}
-
{t("clinic_description")}
+
{t(`clinic_name_${locale}`)}
+
{t(`clinic_description_${locale}`)}
@@ -71,7 +69,9 @@ export default function Header() {
>
toggleAll(index)}>
-
{t(link.text)}
+
+ {t(`${link.text}_${locale}`)}
+
diff --git a/src/components/homepage/homepageGallery.jsx b/src/components/homepage/homepageGallery.jsx
index 9bf3e52..c95e97f 100644
--- a/src/components/homepage/homepageGallery.jsx
+++ b/src/components/homepage/homepageGallery.jsx
@@ -6,43 +6,38 @@ import { FaArrowCircleRight } from "react-icons/fa";
import Image from "next/image";
export default function HomepageGallery({
+ images,
overlay_title,
overlay_description,
}) {
const [activeImg, setActiveImg] = useState(0); // activeImg can hold values 0-7 indicating which image from the lists below to use at each render
- let imgPaths = [
- "/images/homepage/HomepageGalleryImage1.jpg",
- "/images/homepage/HomepageGalleryImage2.png",
- "/images/homepage/HomepageGalleryImage3.png",
- "/images/homepage/HomepageGalleryImage4.png",
- ];
+
// for each image, hold a version of the image with different css stylings corresponding to possible roles it can take on each rerender, whether it is the previously shown image in the gallery or the currently shown image in the gallery
let prev = [];
let curr = [];
let prevR = []; // images in these 2 "R" lists will have stylings necessary to animate the backwards/Reverse sliding (necessary for when the left arrow in the mobile ver. is tapped)
let currR = [];
- for (const element of imgPaths) {
+ for (const element of images) {
prev.push(
);
curr.push(
);
prevR.push(
diff --git a/src/components/layout.jsx b/src/components/layout.jsx
index e7a0c52..4e79909 100644
--- a/src/components/layout.jsx
+++ b/src/components/layout.jsx
@@ -1,12 +1,16 @@
+import { useRouter } from "next/router";
import Header from "./header/header";
import Footer from "./footer/footer";
const PageLayout = ({ children }) => {
+ const router = useRouter();
+ const { locale } = router;
+
return (
<>
-
+ {children}
-
+
>
);
};
diff --git a/src/components/services/imageSlider.jsx b/src/components/services/imageSlider.jsx
index 5a0a3c2..2a0074d 100644
--- a/src/components/services/imageSlider.jsx
+++ b/src/components/services/imageSlider.jsx
@@ -4,51 +4,41 @@ import Image from "next/image";
import { useState } from "react";
import { useTranslations } from "next-intl";
-export default function ImageSlider() {
- const t = useTranslations("Services.services_slides");
+export default function ImageSlider({ locale, imageData }) {
+ const t = useTranslations("Services");
const [currTab, setCurrTab] = useState(1);
const toggleTab = (index) => {
setCurrTab(index);
};
- const imageData = [
- ["/images/services/specialtyClinics.png", "Clinic staff"],
- ["/images/services/hepatitis.png", "Woman being vaccinated"],
- ["/images/services/healthEdu.png", "Clinic students"],
- ["/images/services/vaccines.png", "Woman being vaccinated"],
- ];
-
- const slideCount = Number(t("slide_count"));
- const slideNum = [...Array(slideCount).keys()];
+ const slideCount = imageData.length;
return (
);
})}
diff --git a/src/messages/about-us.json b/src/messages/about-us.json
new file mode 100644
index 0000000..b2d1b12
--- /dev/null
+++ b/src/messages/about-us.json
@@ -0,0 +1,368 @@
+{
+ "_id": "6732fdc76dd9a47bd8fa612c",
+ "_name": "staging",
+ "_published": true,
+ "page_title_en": "The Legacy of Paul Hom",
+ "page_title_zh": "亚洲诊所的历史",
+ "page_title_hmn": "Cov Keeb Kwm Ntawm Paul Hom",
+ "page_title_ko": "폴 홈 (Paul Hom)의 업적",
+ "page_title_es": "El legado de Paul Hom",
+ "page_title_vi": "Lịch sử về phòng khám Paul Hom",
+ "page_subtitle_en": "We are the oldest Asian clinic in the United States.",
+ "page_subtitle_zh": "We are the oldest Asian clinic in the United States.",
+ "page_subtitle_hmn": "We are the oldest Asian clinic in the United States.",
+ "page_subtitle_ko": "We are the oldest Asian clinic in the United States.",
+ "page_subtitle_es": "We are the oldest Asian clinic in the United States.",
+ "page_subtitle_vi": "We are the oldest Asian clinic in the United States.",
+ "commitment_statement_en": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients.",
+ "commitment_statement_zh": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients.",
+ "commitment_statement_hmn": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients.",
+ "commitment_statement_ko": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients.",
+ "commitment_statement_es": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients.",
+ "commitment_statement_vi": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients.",
+ "aboutus_youtube_video": "https://youtu.be/UUguG3tATJE",
+ "history_card_1_title_en": "1971: Our Beginning",
+ "history_card_1_title_zh": "1971 一元复始",
+ "history_card_1_title_hmn": "1971 Peb Txoj Kev Pib",
+ "history_card_1_title_ko": "1971년 설립",
+ "history_card_1_title_es": "1971 Nuestro comienzo",
+ "history_card_1_title_vi": "1971, Khởi Đầu của Chúng Tôi",
+ "history_card_1_text_en": "In 1971, a group of UC Davis medical students led by Paul Hom held meetings with a group of activist undergraduate students from the California State University of Sacramento to discuss improving health care for elderly Asians and new immigrant families who were struggling to obtain adequate health care due to socioeconomic and language barriers and decided to start a free clinic to target this problem.",
+ "history_card_1_text_zh": "1971年,在保罗·霍姆(Paul Hom)的领导之下,加州大学戴维斯分校医学院学生与加州州立大学萨克拉门托分校的一群积极本科生进行了一场会议,致力于讨论改善亚裔老年人和新移民家庭因社会经济和语言障碍取得足够医疗保健之瓶颈,因儿决定开设免费诊所来釜底抽薪的排解问题。",
+ "history_card_1_text_hmn": "Thaum yog 1971, ib pawg tub kawm hauv lub tsev kawm ntawv kho mob Davis coj los ntawm Paul Hom tuav rooj sib tham nrog ib pawg tub kawm ntawv qib siab nyob hauv Sacramento. Cov pawg tub kawm hauv Sacramento yog ib pawg uas mob siab rau coj kev nom kev tswv lossis kev hloov pauv rau lub sijhawm ntawd. Lawv sib tham txog kev txhim kho kev paj noj qab nyob zoo raus cov neeg Esxias laus thiab cov tsev neeg tuaj teb chaw txawv tsis tau nrhiav kev saib xyuas kev noj qab haus huv yooj yim vim muaj teeb meem rau kev nyob thiab ua hawjlwm hauv ib lub teb chaws thiab muaj teeb meem rau kev nkag siab lus. Vim li ntawd lawv thiaj txiav txim siab pib ib lub tsev kuaj mob pub dawb los tsom qhov teeb meem no. ",
+ "history_card_1_text_ko": "1971년, 폴 홈의 지도 아래 UC 데이비스 의대생들이 캘리포니아 주립대 새크라멘토 캠퍼스의 적극적인 학부생들과 함께, 사회경제적 및 언어 장벽으로 인해 적절한 의료 서비스를 받지 못하는 고령 아시아인과 신규 이민자들을 위한 무료 클리닉 설립을 논의한끝에 무료클리닉을 설립하기로 결정하였습니다.",
+ "history_card_1_text_es": "En 1971, un grupo de estudiantes de medicina de UC Davis dirigidos por Paul Hom se reunieron con un grupo de estudiantes universitarios activistas de la Universidad Estatal de Sacramento California para discutir a mejorar la atención médica para los ancianos asiáticos y las nuevas familias de inmigrantes que enfrentan barreras socioeconómicas y lingüísticas para acceder a atención médica adecuada. Decidieron iniciar una clínica gratuita para abordar estos problemas.",
+ "history_card_1_text_vi": "Vào năm 1971, một nhóm sinh viên y của trường UC Davis dẫn đầu bởi Paul Hom đã tổ chức các cuộc họp cùng với các sinh viên từ trường đại học California State University of Sacramento để thảo luận về việc cải thiện dịch vụ chăm sóc sức khỏe cho người Châu Á lớn tuổi và các gia đình mới nhập cư đang gặp khó khăn trong việc có được dịch vụ chăm sóc sức khoẻ đầy đủ do rào cản kinh tế và ngôn ngữ, và họ quyết định bắt đầu một phòng khám miễn phí để nhằm giải quyết vấn đề này. ",
+ "history_card_2_title_en": "Creating a Team",
+ "history_card_2_title_zh": "枕戈待旦 ",
+ "history_card_2_title_hmn": "Tsim Ib Pab Neeg ",
+ "history_card_2_title_ko": "팀 구성 ",
+ "history_card_2_title_es": "Creando un equipo",
+ "history_card_2_title_vi": "Thành lập phòng khám",
+ "history_card_2_text_en": "Paul Hom approached Dr. Lindy Kumagai, one of the few Asian medical faculty members at UC Davis School of Medicine, and asked if he would be the medical director of the clinic. Dr. Lindy Kumagai was an advocate for the Civil Rights Movement and underserved Asian communities. He accepted the position and worked with Paul Hom and UC Davis medical students for the next 30 years.",
+ "history_card_2_text_zh": "Paul Hom 找到了 Lindy Kumagai 博士(加州大学戴维斯分校医学院为数不多的亚裔医学院教员之一),并询问他是否愿意担任诊所的医疗主任。 Lindy Kumagai 医生是民权运动和照护不足足的亚裔族群的倡导者。他接受了这个圣职,并在接下来的 30 年里与 Paul Hom 和加州大学戴维斯分校的医学生一起耕耘。",
+ "history_card_2_text_hmn": "Paul Hom tham nrog kws kho mob Lindy Kumagai vim nws yog ib tug ntawm ob peb tus kws kho mob Esxias hauv lub UC Davis Tsev Kawm Ntawv Tshuaj thiab nug nws seb nws puas yuav yog tus neeg saib xyuas kho mob ntawm lub tsev kuaj mob pub dawb. Kws kho mob Lindy Kumagai yog ib tug tawm tswv yim rau qhov Civil Rights Movement thiab cov neeg Esxias tsis tau txais kev pab. Nws lees txais txoj hauj lwm thiab ua hauj lwm nrog Paul Hom thiab UC Davis cov tub ntxhais kawm kho mob rau 30 xyoo tom ntej.",
+ "history_card_2_text_ko": "폴 홈은 UC 데이비스 의과대학의 몇 안 되는 아시아계 교수 중 한 명인 린디 쿠마가이 박사에게 클리닉의 의료 책임자를 맡아줄 수 있는지 제안했습니다. 린디 쿠마가이 박사는 민권 운동과 소외된 아시아인 커뮤니티를 지원하는 인물로, 그 제안을 받아들였고 이후 30년 동안 폴 홈과 UC 데이비스 의대생들과 함께 일했습니다.",
+ "history_card_2_text_es": "Paul Hom se puso en contacto con el Dr. Lindy Kumagai, uno de los pocos miembros asiáticos de la facultad de medicina en la escuela de medicina de UC Davis, y le preguntó si sería el director médico de la clínica. El Dr. Lindy Kumagai era uno de los defensores del Movimiento de Derechos Civiles y de las comunidades asiáticas desatendidas. Aceptó el puesto y trabajó con Paul Hom y los estudiantes de medicina de UC Davis durante los siguientes 30 años. ",
+ "history_card_2_text_vi": "Paul Hom đã tiếp cận tiến sĩ Lindy Kumagai, một trong số ít những giảng viên y khoa của trường đại học y UC Davis, và hỏi liệu ông có muốn trở thành giám đốc y tế của phòng khám hay không. Tiến sĩ Lindy Kumagai đã từng là người ủng hộ Phong Trào Dân Quyền và các cộng đồng Châu Á chưa được phục vụ đầy đủ. Ông đã nhận chức vụ này và làm việc với Paul Hom và các sinh viên y của trường UC Davis trong 30 năm tiếp theo.",
+ "history_card_3_title_en": "Early Operations",
+ "history_card_3_title_zh": "初试锋芒",
+ "history_card_3_title_hmn": "Haujlwm Ntxov",
+ "history_card_3_title_ko": "초기 운영",
+ "history_card_3_title_es": "Operaciones Tempranas",
+ "history_card_3_title_vi": "Hoạt động ban đầu của phòng khám",
+ "history_card_3_text_en": "The ‘Asian Clinic’, as it was called before being renamed to the Paul Hom Asian Clinic, operated out of the back of a bookstore providing primary care services to 9 to 10 patients every Saturday. After some time, the community closed the bookstore and the clinic moved to the Sacramento Projects in New Helvecia (low income housing). It wasn’t until the year **** that the clinic moved to its current location at the Safe Credit Union on Folsom Boulevard. ",
+ "history_card_3_text_zh": "该诊所在更名为 Paul Hom 亚洲诊所之前被称为“亚洲诊所”,起初在一家书店后面运营,每周六为 9 至 10 名患者提供初级医疗照护。光阴荏苒,书店接束营业,诊所搬至新赫尔维西亚的萨克拉门托计画(低收入住房)。直到****年,诊所才搬至现址福尔瑟姆大道(Folsom Boulevard)的安全信用社(Safe Credit Union)。",
+ "history_card_3_text_hmn": "Lub tsev kho mob pub dawb ho hu “Asian Clinic” ua ntej lawv hloov tshiab uas lub npe “Paul Hom Asian Clinic.” Thaum nws ceem hu “Asian Clinic,” lawv ua haujlwm hauv qab chav ntawm ib lub khw muag phau ntawv nyeem thiab muab kev pabcuam rau 9 txog 10 tus neeg mob txhua txhua hnub Saturday. Tom qab qee lub sijhawm, cov zej zog kaw lub khw muag phau ntawv nyeem thiab lub tsev kho mob tau tsiv mus rau Sacramento Projects hauv New Helvecia (cov tsev nyob tau nyiaj tsawg). Thaum txog xyoo **** lub tsev kho mob pub dawb tau tsiv mus rau qhov chaw tshiab tam sim no ntawm Safe Credit Union ntawm Folsom Boulevard. ",
+ "history_card_3_text_ko": "‘아시안 클리닉’이라는 이름으로 시작된 이 클리닉은, 나중에 폴 홈 아시안 클리닉으로 이름이 변경되기 전까지, 서점 뒤편에서 매주 토요일 9~10명의 환자에게 기본 진료 서비스를 제공했습니다. 시간이 지나면서 지역사회는 서점을 폐쇄했고, 클리닉은 새크라멘토의 뉴 헬베시아(저소득 주택 단지)로 이전했습니다. 현재의 위치인 Folsom Boulevard의 Safe Credit Union으로 클리닉이 이전한 것은 ****년이 되어서였습니다.",
+ "history_card_3_text_es": "La “Clínica Asiática,” como se llamaba antes de pasar a llamarse Clinica Asiatica Paul Hom, operaba en la parte trasera de una librería y brindaba servicios de atención primaria a entre 9 y 10 pacientes todos los sábados. Después de un tiempo, la comunidad cerró la librería y la clínica se trasladó a Sacramento Projects en Nueva Helvecia (viviendas para personas de bajos ingresos). No fue hasta el año **** que la clínica se mudó a su ubicación actual en Safe Credit Union en Folsom Boulevard.",
+ "history_card_3_text_vi": "‘Phòng khám Châu Á’ như tên gọi trước khi được đổi tên thành Phòng Khám Châu Á Paul Hom, đã từng hoạt động từ phía sau một nhà sách để cung cấp những dịch vụ khám sức khỏe cho 9 tới 10 bệnh nhân mỗi thứ bảy. Sau một thời gian, cộng đồng đã đóng cửa nhà sách và phòng khám chuyển tới Sacramento Project ở New Helvecia (nhà ở thu nhập thấp). Mãi tới năm **** thì phòng khám mới chuyển tới địa điểm hiện tại ở Safe Credit Union ở đường Folsom Boulevard. ",
+ "history_card_4_title_en": "Continuing the Legacy",
+ "history_card_4_title_zh": "薪火相传",
+ "history_card_4_title_hmn": "Txaus ntxiv peb txoj keeb kwm",
+ "history_card_4_title_ko": "남긴 업적을 이어가며…",
+ "history_card_4_title_es": "Continuando el legado",
+ "history_card_4_title_vi": "Tiếp tục hành trình phục vụ",
+ "history_card_4_text_en": "After serving for 30 years, Dr. Lindy Kumagai passed on his position as medical director to Dr. Ronald Guy Jan. Dr. Jan had been volunteering for the clinic since 1980. He had an undying dedication and passion for serving the underserved. In the midst of starting his own practice, Dr. Jan would do his rounds between seven different hospitals and then come to the clinic to take on any patient that needed his help. Dr. Jan served for ~18-20 years before passing his position to the current medical director Dr. Christian Bohringer. ",
+ "history_card_4_text_zh": "在服务 30 年后,Lindy Kumagai 医生将医疗主任职位交给了 Ronald Guy Jan 医生。 Jan 医生自 1980 年起就一直在诊所做志愿者。他对服务照护不足的群体有着不朽的奉献精神和热情。在开始自己执业的过程中,Jan 医师会在七家不同的医院之间巡察,然后再来到亚洲诊所接待任何需要他帮助的病人。 Jan 医生任职约 18-20 年后将职位传给现任医疗主任 Christian Bohringer 医生。",
+ "history_card_4_text_hmn": "Tom qab 30 xyoo ua nws tau pab neeg, kws kho mob Lindy Kumagai tso nws txoj hauj lwm ua tus neeg saib xyuas lub tsev kho mob rau kws kho mob Ronald Guy Jan. Kws kho mob Jan tau pab lub tsev kho mob txij thaum xyoo 1980. Nws yeej tau txhawb nqa thiab muab tag nrho nws lub sijhawm los pab cov neeg tsis muaj dab tsi. Thaum nws nyuam qhuav kawm los pib qhib nws lub tsev kho mob, Kws kho mob Jan tau ncig xya lub tsev kho mob ces nws mam los tim lub tsev kho mob ntawm no los pab cov neeg mob ua xav nrhiav nws txoj kev pab. Kws kho mob Jan tau pab neeg los tau ~18-20 xyoo ua tej nws muaj txoj hauj lwm rau tus neeg saib xyuas lub tsev kho mob tam sim no ua yog kws kho mob Christian Bohringer. ",
+ "history_card_4_text_ko": "30년간 봉사한 린디 쿠마가이 박사는 의료 책임자 자리를 로널드 가이 쟌 박사에게 넘겼습니다. 쟌 박사는 1980년부터 클리닉에서 자원봉사를 해왔으며, 소외된 사람들을 돕는 일에 대한 깊은 헌신과 열정을 가지고 있었습니다. 자신의 병원을 운영하면서도, 일곱 개의 병원을 돌며 환자를 진료한 후 클리닉으로 와서 도움이 필요한 환자들을 돌보았습니다. 쟌 박사는 약 18-20년 동안 의료 책임자로 일한 후, 그 자리를 현재의 의료 책임자인 크리스티안 보린저 박사에게 넘겼습니다. ",
+ "history_card_4_text_es": "Después de servir durante 30 años, el Dr. Lindy Kumagai cedió su puesto como director médico al Dr. Ronald Guy Jan. El Dr. Jan había sido voluntario de la clínica desde 1980. Tenía una dedicación y pasión eternas por servir a los desatendidos. Mientras estaba comenzando su propia práctica, el Dr. Jan hacía sus rondas entre siete hospitales diferentes y luego iba a la clínica para atender a cualquier paciente que necesitara su ayuda. El Dr. Jan trabajó entre 18 y 20 años antes de ceder su puesto al actual director médico, el Dr. Christian Bohringer.",
+ "history_card_4_text_vi": "Sau khi phục vụ được 30 năm, Tiến sĩ Lindy Kumagai đã chuyển giao vị trí giám đốc y tế cho Bác sĩ Ronald Guy Jan. Bác sĩ Jan đã tình nguyện làm việc cho phòng khám từ năm 1980. Ông có sự cống hiến bất tận và niềm đam mê phục vụ những người chưa được phục vụ đầy đủ. Trong quá trình bắt đầu hành nghề của riêng mình, bác sĩ Jan sẽ đi vòng quanh bảy bệnh viện khác nhau và sau đó đến phòng khám để tiếp nhận bất kỳ bệnh nhân nào cần sự giúp đỡ của ông. Bác sĩ Jan đã phục vụ từ 18 đến 20 năm trước khi chuyển giao vị trí của mình cho giám đốc y tế hiện tại, Tiến sĩ Christian Bohringer.",
+ "history_card_5_title_en": "Today",
+ "history_card_5_title_zh": "今生今世",
+ "history_card_5_title_hmn": "Hnub no",
+ "history_card_5_title_ko": "오늘날",
+ "history_card_5_title_es": "Hoy",
+ "history_card_5_title_vi": "Hôm nay",
+ "history_card_5_text_en": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients. The existence of the Paul Hom Asian Clinic has proved beneficial not only to the patients, but also to the undergraduate students, medical students, and physicians who volunteer their time and efforts. The legacy of Dr. Paul Hom continues to thrive and is the oldest Asian clinic in all of America",
+ "history_card_5_text_zh": "Paul Hom 医生对诊所及为亚裔族群中由于文化、语言或经济障碍而缺乏足够医疗保健的各个年龄段的患者提供服务之宗旨做出了不渝的承诺。医疗保健依然不懈地向所有患者免费提供。 Paul Hom 亚洲诊所的存在不仅仅对患者受益良多,也对自愿投入时间和精力的本科生、医学生和医生获益匪浅。 Paul Hom 医生的传承依旧继续发扬光大着并仍然坚守着全美最古老的亚洲诊所的美称。",
+ "history_card_5_text_hmn": "Kws kho mob Paul Hom tau siv tam nrho nws lub zog muab pub rau lub tsev kho mob kom nws ua raws nws lub hom phiaj los pab cov neeg mob tsis hais lawv hnub yug nyob rau cov neeg Esxias ua txais kev pab ntawm tshuaj vim yog lawv kev cai, lawv cov lus, thiab lawv txoj kev khwv tsis zoo li lwm haiv neeg. Peb lub Tsev Kho Mob Paul Hom Asian Clinic tsis yog tau pab cov neeg muaj mob, tab sis nws kuj tau pab cov tub ntxhais kawm ntawv, tau pab cov tub ntxhais kawm tshuaj kho mob, thiab nws tseem tau pab cov kws kho mob ua tau muaj nws lub sijhawm los pab hauv lub tsev kho mob ntawm no. Qhov keeb kwm ntawm kws kho mob Paul Hom yeej tseem txuas ntxiv los txog hnub no thiab tseem yog lub tsev kho mob rau cov neeg Esxias nyob hauv lub teb chaws America.",
+ "history_card_5_text_ko": "폴 홈 박사는 문화적, 언어적, 경제적 장벽으로 인해 적절한 의료 서비스를 받지 못하는 아시아 커뮤니티의 모든 연령대 환자들을 위해 헌신적으로 클리닉을 운영했습니다. 현재까지도 모든 환자에게 무료로 의료 서비스를 제공하고 있습니다. 폴 홈 아시안 클리닉의 존재는 환자들뿐만 아니라, 시간을 내어 자원봉사하는 학부생, 의대생, 그리고 의사들에게도 큰 도움이 되고 있습니다. 폴 홈 박사의 정신은 여전히 이어지고 있으며, 이 클리닉은 미국에서 가장 오래된 아시안 클리닉입니다.",
+ "history_card_5_text_es": "El Dr. Paul Hom tenía un compromiso incansable con la clínica y con su propósito de atender a pacientes de todas las edades en la comunidad asiática que tienen falta de atención médica adecuada debido a barreras culturales, lingüísticas o económicas. La atención médica continua brindando de forma gratuita a todos los pacientes. La existencia de la Clinica Asiatica Paul Hom ha demostrado ser beneficiosa no solo para los pacientes, sino también para los estudiantes universitarios, los estudiantes de medicina y los médicos que ofrecen su tiempo y esfuerzos como voluntarios. El legado del Dr. Paul Hom continúa prosperando y es la clínica asiática más antigua de toda América. ",
+ "history_card_5_text_vi": "Bác sĩ Paul Hom đã có một cam kết mãnh liệt với phòng khám và mục đích để phục vụ tất cả các bệnh nhân ở mọi lứa tuổi trong cộng đồng Châu Á không được chăm sóc sức khoẻ đầy đủ do các rào cản về văn hóa, ngôn ngữ hoặc kinh tế. Những dịch vụ chăm sóc sức khỏe sẽ tiếp tục được cung cấp miễn phí cho các bệnh nhân. Sự tồn tại của Phòng Khám Paul Hom đã mang lại lợi ích không chỉ cho các bệnh nhân, mà còn cho các sinh viên đại học, sinh viên y tế, và những bác sĩ đã tình nguyện thời gian và công sức của họ. Di sản của Bác sĩ Paul Hom sẽ tiếp tục phát triển và là một phòng khám Châu Á lâu đời nhất nước Mỹ. ",
+ "sister_clinics_text_en": "Our Sister Clinics",
+ "sister_clinics_text_zh": "我们的姊妹诊所",
+ "sister_clinics_text_hmn": "Cov Tsev Kho Mob Sib Txuas Nrog Peb",
+ "sister_clinics_text_ko": "자매 클리닉",
+ "sister_clinics_text_es": " Nuestras clínicas hermanas",
+ "sister_clinics_text_vi": "Phòng khám trực thuộc của chúng tôi",
+ "sister_clinics_en": [
+ {
+ "name": "VN Cares",
+ "link": "https://www.vncares.org/"
+ },
+ {
+ "name": "HLUB",
+ "link": "https://hlubclinic.wordpress.com/"
+ }
+ ],
+ "sister_clinics_zh": [
+ {
+ "name": "越南癌症意识研究教育协会",
+ "link": "https://www.vncares.org/"
+ },
+ {
+ "name": "苗族跨越照护不足之障碍诊所",
+ "link": "https://hlubclinic.wordpress.com/"
+ }
+ ],
+ "sister_clinics_hmn": [
+ {
+ "name": "Tsev Kho Mob VN Cares",
+ "link": "https://www.vncares.org/"
+ },
+ {
+ "name": "Tsev Kho Mob HLUB",
+ "link": "https://hlubclinic.wordpress.com/"
+ }
+ ],
+ "sister_clinics_ko": [
+ {
+ "name": "VN 케어스",
+ "link": "https://www.vncares.org/"
+ },
+ {
+ "name": "HLUB",
+ "link": "https://hlubclinic.wordpress.com/"
+ }
+ ],
+ "sister_clinics_es": [
+ {
+ "name": "VN Cares",
+ "link": "https://www.vncares.org/"
+ },
+ {
+ "name": "HLUB",
+ "link": "https://hlubclinic.wordpress.com/"
+ }
+ ],
+ "sister_clinics_vi": [
+ {
+ "name": "VN Cares",
+ "link": "https://www.vncares.org/"
+ },
+ {
+ "name": "HLUB",
+ "link": "https://hlubclinic.wordpress.com/"
+ }
+ ],
+ "ucd_clinics_text_en": "UC Davis Student-Run Clinics",
+ "ucd_clinics_text_zh": "加州大学戴维斯分校学运诊所",
+ "ucd_clinics_text_hmn": "Tsev Kho Mob Khiav Los Ntawm Cov Tub Ntxhais Kawm Tim UC Davis",
+ "ucd_clinics_text_ko": "데이비스 학생 운영 클리닉",
+ "ucd_clinics_text_es": "Clínicas dirigidas por estudiantes de UC Davis",
+ "ucd_clinics_text_vi": "Phòng khám do Sinh viên UC Davis điều hành",
+ "ucd_clinics_en": [
+ {
+ "name": "Bayanihan",
+ "link": "https://www.bayanihanclinic.com/"
+ },
+ {
+ "name": "Clinica Tepati",
+ "link": "https://clinicatepati.com/"
+ },
+ {
+ "name": "Imani clinic",
+ "link": "https://www.imaniclinic.org/"
+ },
+ {
+ "name": "Joan Viteri Memorial Clinic",
+ "link": "https://www.jvmclinic.com/"
+ },
+ {
+ "name": "Shifa Clinic",
+ "link": "https://shifaclinic.org/"
+ },
+ {
+ "name": "Willow Clinic",
+ "link": "https://www.willowclinic.org/"
+ }
+ ],
+ "ucd_clinics_zh": [
+ {
+ "name": "巴亚尼汉",
+ "link": "https://www.bayanihanclinic.com/"
+ },
+ {
+ "name": "特帕蒂诊所",
+ "link": "https://clinicatepati.com/"
+ },
+ {
+ "name": "伊马尼诊所",
+ "link": "https://www.imaniclinic.org/"
+ },
+ {
+ "name": "琼·维特里纪念诊所",
+ "link": "https://www.jvmclinic.com/"
+ },
+ {
+ "name": "施发诊所",
+ "link": "https://shifaclinic.org/"
+ },
+ {
+ "name": "柳树诊所",
+ "link": "https://www.willowclinic.org/"
+ }
+ ],
+ "ucd_clinics_hmn": [
+ {
+ "name": "Tsev Kho Kob Bayanihan",
+ "link": "https://www.bayanihanclinic.com/"
+ },
+ {
+ "name": "Tsev Kho Mob Tepati",
+ "link": "https://clinicatepati.com/"
+ },
+ {
+ "name": "Tsev Kho Mob Imani",
+ "link": "https://www.imaniclinic.org/"
+ },
+ {
+ "name": "Tsev Kho Mob Memorial Joan Viteri",
+ "link": "https://www.jvmclinic.com/"
+ },
+ {
+ "name": "Tsev Kho Mob Shifa",
+ "link": "https://shifaclinic.org/"
+ },
+ {
+ "name": "Tsev Kho Mob Willow",
+ "link": "https://www.willowclinic.org/"
+ }
+ ],
+ "ucd_clinics_ko": [
+ {
+ "name": "바야니한 클리닉",
+ "link": "https://www.bayanihanclinic.com/"
+ },
+ {
+ "name": "테파티 클리닉",
+ "link": "https://clinicatepati.com/"
+ },
+ {
+ "name": "이마니 클리닉",
+ "link": "https://www.imaniclinic.org/"
+ },
+ {
+ "name": "조안 비테리 메모리얼 클리닉",
+ "link": "https://www.jvmclinic.com/"
+ },
+ {
+ "name": "시파 클리닉",
+ "link": "https://shifaclinic.org/"
+ },
+ {
+ "name": "윌로우 클리닉",
+ "link": "https://www.willowclinic.org/"
+ }
+ ],
+ "ucd_clinics_es": [
+ {
+ "name": "Clínica Bayanihan",
+ "link": "https://www.bayanihanclinic.com/"
+ },
+ {
+ "name": "Clínica Tepati",
+ "link": "https://clinicatepati.com/"
+ },
+ {
+ "name": "Clínica Imani",
+ "link": "https://www.imaniclinic.org/"
+ },
+ {
+ "name": "Clínica Memorial Joan Viteri",
+ "link": "https://www.jvmclinic.com/"
+ },
+ {
+ "name": "Clínica Shifa",
+ "link": "https://shifaclinic.org/"
+ },
+ {
+ "name": "Clínica Willow",
+ "link": "https://www.willowclinic.org/"
+ }
+ ],
+ "ucd_clinics_vi": [
+ {
+ "name": "Phòng khám Bayanihan",
+ "link": "https://www.bayanihanclinic.com/"
+ },
+ {
+ "name": "Phòng khám Tepati",
+ "link": "https://clinicatepati.com/"
+ },
+ {
+ "name": "Phòng khám Imani",
+ "link": "https://www.imaniclinic.org/"
+ },
+ {
+ "name": "Phòng khám Joan Viteri Memorial",
+ "link": "https://www.jvmclinic.com/"
+ },
+ {
+ "name": "Phòng khám Shifa",
+ "link": "https://shifaclinic.org/"
+ },
+ {
+ "name": "Phòng khám Willow",
+ "link": "https://www.willowclinic.org/"
+ }
+ ],
+ "_last_modified": "2024-11-12T23:53:16.333Z",
+ "_created_at": "2024-11-12T07:03:35.050Z",
+ "page_media": {
+ "gallery_section": [
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406330/mh2e4bfqkjp0xugj6tsw.png",
+ "alt": "frame1.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406313/w5ev0buaovmdgfihuo3b.png",
+ "alt": "frame2.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406315/ufkbtb2ipxtw03oykh8v.png",
+ "alt": "frame3.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406311/emz02olqwcafi56clxso.png",
+ "alt": "frame4.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406312/p4ap4u7bduflyh9iq1ij.png",
+ "alt": "frame5.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406334/eashunopppzqt2mtmjtg.png",
+ "alt": "frame6.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406318/t4n7ahvfuo15wcxfldqi.png",
+ "alt": "frame7.png"
+ }
+ ],
+ "history_section": [
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406307/cmp8ghppbsel8nc6pzwb.png",
+ "alt": "1971image.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406313/dmlgsbimnfdwzazfrs6k.png",
+ "alt": "creatingateam.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406330/sehqfn7qj82cw64pcq9w.png",
+ "alt": "earlyoperations.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406351/wfmalf6lg76o8gixdzjt.png",
+ "alt": "continuingthelegacy.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406309/pwj3cd0tr3sx5wce5kll.png",
+ "alt": "Today.png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/src/messages/committees.json b/src/messages/committees.json
new file mode 100644
index 0000000..416aa58
--- /dev/null
+++ b/src/messages/committees.json
@@ -0,0 +1,220 @@
+{
+ "committee_links": [
+ "neurology",
+ "covered-california",
+ "patient-assistance-program",
+ "ophthalmology",
+ "hepatitis",
+ "dermatology",
+ "cardiopulmonary",
+ "womens-health",
+ "diabetes"
+ ],
+ "neurology": {
+ "_id": "6733103cdc67a045cf0eca76",
+ "_name": "staging - Neurology",
+ "_published": true,
+ "committee_name_en": "Neurology",
+ "committee_name_zh": "神经科部门",
+ "committee_name_hmn": "Mob Rau Leeg Xa Xov Rau Lub Hlwb Thiab Thoob Plaws Lub Cev",
+ "committee_name_ko": "신경과",
+ "committee_name_es": "El Comité de Salud de la Mujer garantiza que las pacientes tengan acceso a exámenes preventivos de cáncer disponibles y organiza eventos de salud para educar a las pacientes sobre el cáncer de mama y cáncer del cuello uterino, temas que se evitan en muchas familias asiáticas. Algunos servicios que brinda este comité son: referencias a Planned Parenthood para mamografías; inscripción en el programa Every Woman Counts (Cada Mujer Cuenta) para pacientes sin seguro junto con seguimientos médico; haciendo citas para clínicas de obstetricia y ginecología, pruebas de Papanicolau y exámenes clínicos de mama (ECM). Neurología",
+ "committee_name_vi": "Ban thần kinh",
+ "committee_description_en": "The Neurology Clinic assists patients with neurological issues, such as problems with memory, neuropathic pain (numb, tingling, or burning feet/hands), sleep, migraine, seizures, and any other issues related to the brain. We also offer dementia screening for patients who are older than 65 years of age and provide access to resources for patients, caretakers, and family members of individuals with memory loss issues.",
+ "committee_description_zh": "神经科部门为患有神经系统问题的患者提供协助,包括记忆问题、神经性疼痛(脚/手麻木、刺痛或灼热感)、睡眠、偏头痛、癫痫发作,以及其他与大脑相关的问题。我们为 65 岁以上的患者提供失智症筛检,并为有记忆丧失问题的患者、照顾者和家属提供资源。",
+ "committee_description_hmn": "Peb pab pawg hu ua Neurology Committee pab cov neeg muaj mob rau cov leeg xa xov rau lub hlwb thiab thoob plaws lub cev xws lis teeb meem nrog kev nco, mob li loog loog lossis caws yaum los yog hnov mob li kub kub rau txhais tes thiab ko taw, pws tsis zoo, hnov mob heev ntawm ib sab taub hau, mob qaug dab peg, thiab lwm yam teeb meem ntsig txog lub hlwb. Peb kuj tseem muab kev tshuaj ntsuam xyuas hom mob teem toob cuam tshuam txoj kev xav, kev nco qab, kev txuas lus nrog lwm tus, thiab kev txiav txim siab rau cov neeg mob uas muaj hnub nyoog tshaj 65 thiab muab kev pab rau cov neeg mob, cov neeg saib xyuas, thiab cov tsev neeg ntawm cov neeg uas muaj teeb meem nco.",
+ "committee_description_ko": "신경과 클리닉은 기억 상실, 신경병성 통증(발/손의 무감각, 따끔거림 또는 화끈거림), 수면 문제, 편두통, 발작 및 기타 뇌 관련 문제를 가진 환자를 지원합니다. 또한, 65세 이상의 환자를 대상으로 치매 검진을 실시하고, 기억력 문제를 가진 환자, 보호자 및 가족에게 자원을 제공합니다.",
+ "committee_description_es": "La Clínica de Neurología ayuda a pacientes con problemas neurológicos, como problemas de memoria, dolor neuropático (entumecimiento, hormigueo o ardor en pies/manos), sueño, migraña, convulsiones y cualquier otro problema relacionado con el cerebro. También ofrecemos pruebas de detección de demencia para pacientes mayores de 65 años y brindamos acceso a recursos para pacientes, cuidadores y familiares de personas con problemas de pérdida de memoria.",
+ "committee_description_vi": "Phòng khám hỗ trợ các bệnh nhân có vấn đề về thần kinh, chẳng hạn như các vấn đề về trí nhớ, đau thần kinh (tê, ngứa ran hoặc nóng rát bàn chân/bàn tay), giấc ngủ, chứng đau nửa đầu, co giật và bất kỳ vấn đề nào khác liên quan đến não. Chúng tôi cũng cung cấp dịch vụ sàng lọc chứng mất trí nhớ cho những bệnh nhân trên 65 tuổi và cung cấp hỗ trợ cho bệnh nhân, người chăm sóc và thành viên gia đình của những người có vấn đề về mất trí nhớ.",
+ "committee_image": {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731399740/hi7qipjziqutmxtp7kgn.png",
+ "alt": "neurology.png"
+ },
+ "_last_modified": "2024-11-12T10:17:13.281Z",
+ "_created_at": "2024-11-12T08:22:20.494Z"
+ },
+ "covered-california": {
+ "_id": "67330d2fdc67a045cf0eca6e",
+ "_name": "staging - covered california",
+ "_published": true,
+ "committee_name_en": "Covered California",
+ "committee_name_zh": "加州全保部门",
+ "committee_name_hmn": "Covered California",
+ "committee_name_ko": "커버드 캘리포니아 (Covered California)",
+ "committee_name_es": "Aseguranza Covered California",
+ "committee_name_vi": "Ban đăng ký bảo hiểm",
+ "committee_description_en": "The Covered California Committee assists patients in signing up for affordable health insurance through Covered California, Medi-Cal and Medicare. All Covered California Co-Directors are certified enrollment counselors for Covered California and, therefore, are able to work with patients through the entirety of the insurance application. The Covered California Committee also provides assistance in SPIRIT referrals--where patients can potentially have their expensive surgeries paid for.",
+ "committee_description_zh": "加州全保部门协助患者申请价格亲民的健康保险如加州全保(Covered California)、Medi-Cal 和 Medicare。加州全保部门的所有联合理事都是加州全保的认证注册顾问,因此能够在整个保险申请过程中与患者合作。此外,加州全保部门也提供转诊协助(与萨克拉门托医生的拓展、创新和教学计划(SPIRIT program)合作。如此一来,患者昂贵的手术费用有可能获得报销。",
+ "committee_description_hmn": "Peb pab pawg hu ua Covered California pab neeg kos npe kom tau daim ntawv pov hwm rau kev kho mob ntawm Covered California, Medi-Cal thiab Medicare. Tag nrho peb pawg Covered California tau ntawv pov thawj rau pab tswv yim rau npe rau Covered California thiab muaj peev xwm paj neeg thov kev tuav pov hwm txij thaum pib mus txog thaum xaus. Peb kuj tseem muab kev pab hauv SPIRIT--kom them rau cov neeg mob txoj kev phais uas raug nqi ntau heev. ",
+ "committee_description_ko": "커버드 캘리포니아 부서는 환자들이 Covered California, Medi-Cal, Medicare를 통해 저렴한 건강 보험에 가입할 수 있도록 돕습니다. 모든 커버드 캘리포니아 공동 디렉터는 커버드 캘리포니아의 공인 등록 상담사이며, 따라서 환자들이 보험 신청 과정을 끝까지 함께 진행할 수 있습니다. 커버드 캘리포니아 부서는 또한 환자들이 고액의 수술 비용을 보장받을 수 있는 SPIRIT 의뢰를 지원합니다.",
+ "committee_description_es": "El Comité de Covered California ayuda a los pacientes a inscribirse en un seguro médico asequible a través de Covered California, Medi-Cal y Medicare. Todos los codirectores de Covered California son asesores de inscripción certificados para Covered California y, por lo tanto, pueden trabajar con los pacientes durante toda la solicitud de seguro.El comité de Covered California también ofrece asistencia en referencias SPIRIT, donde los pacientes potencialmente pueden pagar sus cirugías costosas.",
+ "committee_description_vi": "Ban đăng ký bảo hiểm hỗ trợ bệnh nhân trong việc đăng ký bảo hiểm y tế thông qua Covered California, Medi-Cal và Medicare. Tất cả các đồng giám đốc của Covered California đều là cố vấn đăng ký đã được chứng nhận của Covered California và do đó, có thể làm việc với bệnh nhân trong toàn bộ quá trình làm đơn đăng ký bảo hiểm. Ủy ban Covered California cũng cung cấp hỗ trợ trong việc giới thiệu SPIRIT--nơi bệnh nhân có thể nhận được thanh toán cho các ca phẫu thuật đắt tiền.",
+ "committee_image": {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731398959/uxinaqejk9fayznekh9u.png",
+ "alt": "covered_california.png"
+ },
+ "_last_modified": "2024-11-12T10:16:23.928Z",
+ "_created_at": "2024-11-12T08:09:19.641Z"
+ },
+ "patient-assistance-program": {
+ "_id": "67330da5dc67a045cf0eca70",
+ "_name": "staging - Patient Assistance Program",
+ "_published": true,
+ "committee_name_en": "Patient Assistance Program",
+ "committee_name_zh": "患者援助计划部门(药剂部门)",
+ "committee_name_hmn": "Pab Neeg Mob Muaj Tshuaj Dawb",
+ "committee_name_ko": "환자 지원 프로그램 (Patient Assistance Program)",
+ "committee_name_es": "Programa de Asistencia al Paciente",
+ "committee_name_vi": "Chương trình hỗ trợ phí thuốc cho bệnh nhân (PAP)",
+ "committee_description_en": "The Patient Assistance Program (PAP) Committee enrolls low-income and uninsured/underinsured patients to receive brand-name medications at no cost from participating pharmaceutical companies. On average, we help patients save $130,000 a year on the medication cost. In addition, we have been leading various projects that provide patients free resources such as: accessories for injectable medications (syringes, needles, sharps containers, and needle clippers) and medication-related infographics. Recently, we have started collaborating with GoodRx to provide qualified patients monthly pre-paid debit cards for their chronic generic medications. Furthermore, the PAP Committee works closely with Dr. Jan and Dr. Pauly to monitor patients’ medication compliance, effectiveness, and safety, and to accommodate patients' other special needs on a case-by-case basis.",
+ "committee_description_zh": "患者援助计划部门(药剂部门)招募低收入和未纳保/保费不足的患者,并与参与的制药公司合作向患者免费提供专利药。平均而言,我们每年帮助患者节省约 130,000 美元的药物支出。此外,我们还领导了各种能为患者提供其他免费资源的项目,例如药物注射配件(注射器、针头、锐器容器和针头剪)和药物相关资讯图表。最近,我们开始与美国处方药折扣平台GoodRx合作,为符合条件的患者提供每月预付扣账卡用于购买慢性病非专利药。另外,患者援助计划部门(药剂部门)与 Jan 医生和 Pauly 医生密切合作,监测患者的用药情形、效果和安全,并根据具体情况满足患者的其他特殊需求。",
+ "committee_description_hmn": "Peb pab pawg hu ua PAP Committee pab cov neeg muaj nyiaj tsawg thiab tsis muaj kev pov hwm rau kev kho mob kom lawv tau txais cov tshuaj kim kom tsis muaj nqi rau lawv los ntawm cov tsev lag luam tshuaj koom tes nrog peb. Qhov nruab nrab, peb pab cov neeg mob txuag $130,000 ib xyoos ntawm cov nqi tshuaj. Tsis tas li ntawd, peb tau ua ntau yam haujlwm uas muab pub dawb rau cov neeg mob xws li: cov khoom siv rau kev txhaj tshuaj (cov koob txhaj tshuaj, koob, cov thawv ntim koob, thiab cov txiav rab koob) thiab cov ntaub ntawv hais txog tshuaj. Tsis ntev los no, peb tau pib koom tes nrog GoodRx los muab cov neeg mob tsim nyog tau daim npav rho nyiaj twb them ua ntej tag lawm rau lawv cov tshuaj noj txhua txhua hli. Tsis tas li ntawd, cov Pawg Neeg Pab Neeg Mob Muaj Tshuaj Dawb ua haujlwm ze nrog Kws Kho Mob Jan thiab Khw Kho Mob Pauly los saib xyuas cov neeg mob cov tshuaj ua raws li kev noj qab haus huv, kev ua tau zoo, kev nyab xeeb, thiab ua kom haum rau cov neeg mob lwm yam kev xav tau tshwj xeeb ntawm ib rooj plaub.",
+ "committee_description_ko": "환자 지원 프로그램(PAP) 부서는 저소득층 및 보험이 없거나 부족한 환자들이 제약 회사로부터 무료로 브랜드 약품을 받을 수 있도록 등록합니다. 저희는 환자들이 연간 약 13만 달러의 약품 비용을 절감할 수 있도록 돕습니다. 또한, 주사약(주사기, 바늘, 바늘 용기 및 바늘 클리퍼) 액세서리와 약물 관련 인포그래픽을 무료로 제공하는 다양한 프로젝트를 주도하고 있습니다. 최근 우리는 GoodRx와 협력하여 자격을 갖춘 환자에게 월별 선불 카드로 만성 제네릭 약품을 제공합니다. 또한, PAP 위원회는 환자의 약물 순응도, 효과, 안전성을 모니터링하고 환자의 특별한 필요에 맞추어 Dr. Jan과 Dr. Pauly와 긴밀히 협력합니다.",
+ "committee_description_es": "El Comité del Programa de Asistencia al Paciente (PAP) inscribe a pacientes de bajos ingresos y sin seguro o con seguro insuficiente para recibir medicamentos de marca sin costo de las compañías farmacéuticas participantes. De promedio, ayudamos a los pacientes a ahorrar $130,000 al año en el costo de los medicamentos. También hemos estado liderando diversos proyectos que brindan a los pacientes recursos gratuitos como: accesorios para medicamentos inyectables (jeringas, agujas, recipientes para objetos punzocortantes y corta agujas) e infografías relacionadas con medicamentos. Recientemente, comenzamos a colaborar con GoodRx para ofrecer a los pacientes calificados tarjetas de débito prepagas mensuales para sus medicamentos genéricos crónicos. Además, el Comité PAP trabaja cerca en colaboración con el Dr. Jan y la Dra. Pauly para monitorear el cumplimiento, la eficacia y la seguridad de la medicación de los pacientes, y para satisfacer otras necesidades especiales de los pacientes caso por caso. ",
+ "committee_description_vi": "Ban hỗ trợ phí thuốc đăng ký các bệnh nhân có thu nhập thấp và không có bảo hiểm/bảo hiểm thấp để nhận thuốc chính hiệu miễn phí từ các công ty dược phẩm. Trung bình, chúng tôi giúp bệnh nhân tiết kiệm 130.000 USD cho chi phí thuốc mỗi năm. Ngoài ra, chúng tôi còn dẫn đầu nhiều dự án cung cấp các vật liệu y tế miễn phí cho bệnh nhân như: phụ kiện cho thuốc tiêm (ống tiêm, kim tiêm, hộp đựng vật sắc nhọn và dụng cụ cắt kim) và đồ họa thông tin liên quan đến thuốc. Gần đây, chúng tôi đã bắt đầu hợp tác với GoodRx để cung cấp thẻ trả trước hàng tháng cho các loại thuốc thông dụng mãn tính của các bệnh nhân đã đáp ứng đủ điều kiện. Hơn nữa, ban PAP hợp tác chặt chẽ với bác sĩ Jan và bác sĩ Pauly để theo dõi việc tuân thủ dùng thuốc, hiệu quả và độ an toàn của bệnh nhân, đồng thời đáp ứng các nhu cầu đặc biệt khác của bệnh nhân trong từng trường hợp cụ thể.",
+ "committee_image": {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731399076/xmkhgaubsxaeyg6i2iqv.png",
+ "alt": "patient_assistance_program.png"
+ },
+ "_last_modified": "2024-11-12T10:16:35.617Z",
+ "_created_at": "2024-11-12T08:11:17.246Z"
+ },
+ "ophthalmology": {
+ "_id": "67331071dc67a045cf0eca7a",
+ "_name": "staging - opthalmology",
+ "_published": true,
+ "committee_name_en": "Ophthalmology ",
+ "committee_name_zh": "眼科部门",
+ "committee_name_hmn": "Saib Xyuas Qhov Muag",
+ "committee_name_ko": "안과",
+ "committee_name_es": "Oftalmología",
+ "committee_name_vi": "Ban nhãn khoa",
+ "committee_description_en": "The Ophthalmology Committee monitors our patients’ history for eye conditions and provides patients with an assessment and follow-up care plan if needed. The committee conducts pupillary exams, intraocular pressure exams, visual acuity exams, slit lamp exams, and retinal exams during our clinic hours. Ophthalmology clinics are held quarterly on Sundays from 8:30am to 12pm. Depending on a patient’s insurance status and visual acuity, the Ophthalmology Committee can provide a VSP voucher which patients can use at a local optometrist’s office to obtain free-of-charge eyeglass frames and lenses and eye exams.",
+ "committee_description_zh": "眼科部门监测患者的眼部疾病史,并在需要时为患者提供评估和后续护理计划。在门诊时间内可进行瞳孔检查、眼压检查、视力检查、裂隙灯检查和视网膜检查。每季会有一次眼科门诊,时间为周日上午 8:30 至中午 12 :00。根据患者的保险状况和视力检查结果,眼科部门会为有需要的患者提供 VSP 代金券,患者可以在本地验光师办公室使用代金券,获得免费眼科检查,并配置眼镜框和镜片。",
+ "committee_description_hmn": "Pab pawg hu ua Ophthalmology Committee saib xyuas peb cov neeg mob qhov keeb kwm txog nws ob lub qhov muag nrog lawv qhov soj ntsuam thiab kam pab teem caij los pab ob lub qhov muag yog hais tias tus neeg mob xav tau. Pab pawg no xyuas lub ntsiab muag, xyuas seb ob lub qhov muag puas nruj nruj, sim saib seb qhov muag pom kev li cas, yuav siv ib lub teeb los tsom xyuas qhov muag, thiab ntsuas nram qab lub qhov muag thaum peb tseem qhib lub tsev kho mob. Lub tsev kho mob ntsuas qhov muag tsuas qhib peb lub hlis twg nyob rau hnub vas tiv thaum 8:30am txog 12pm. Nyob ntawm tus neeg mob daim ntawv pov hwm thiab nws pom kev li cas, peb pab pawg xyuas qhov muag yeej pab tau tus neeg mob kom nws tau ib qho ntawv pov thawj hu ua VSP, ua tus neeg mob mam coj mus rau ib tus kws kho mob ntawm qhov muag kom lawv muaj ib lub tsom iav pub dawb rau to neej mob thiab kom lawv xyuas tus neeg mob ob lub qhov muag pub dawb. ",
+ "committee_description_ko": "안과 부서는 환자의 안과 병력을 모니터링하고 필요시 평가 및 후속 진료 계획을 제공합니다. 위원회는 동공 검사, 안압 검사, 시력 검사, 슬릿 램프 검사, 망막 검사를 클리닉 시간에 진행합니다. 안과 클리닉은 매년 분기별로 일요일 오전 8시 30분부터 12시까지 운영됩니다. 환자의 보험 상태와 시력에 따라, 안과 부서는 환자들이 지역 검안사 사무실에서 무료로 안경테와 렌즈 및 눈 검사를 받을 수 있도록 VSP 바우처를 제공합니다.",
+ "committee_description_es": "El Comité de Oftalmología monitorea el historial de nuestros pacientes para detectar afecciones oculares y les brinda una evaluación y un plan de atención de seguimiento si es necesario. El comité conducta examenes pupilares, exámenes de presión intraocular, exámenes de agudeza visual, exámenes con lámpara de hendidura y exámenes de retina durante el horario de nuestra clínica. Las consultas de oftalmología se realizan trimestralmente los Domingos de 8:30 de la mañana hasta las 12. Dependiendo del estado del seguro y de la agudeza visual del paciente, el Comité de Oftalmología puede ofrecer un certificado de VSP que los pacientes pueden usar en el consultorio de un optometrista local para obtener lentes gratuitamente y exámenes de la vista sin cargo. ",
+ "committee_description_vi": "Ban nhãn khoa theo dõi tiền sử bệnh về tình trạng mắt của bệnh nhân và cung cấp cho bệnh nhân bản đánh giá và kế hoạch chăm sóc nếu cần. Ủy ban tiến hành kiểm tra đồng tử, áp suất trong mắt, thị lực, kiểm tra mắt dùng đèn khe và ống kính và kiểm tra võng mạc trong giờ làm việc tại phòng khám của chúng tôi. Phòng khám nhãn khoa được tổ chức định kỳ mỗi ba tháng vào các ngày Chủ nhật từ 8h30 sáng đến 12h trưa. Tùy thuộc vào tình trạng bảo hiểm và thị lực của bệnh nhân, Ủy ban nhãn khoa có thể cung cấp phiếu VSP mà bệnh nhân có thể sử dụng tại văn phòng bác sĩ nhãn khoa địa phương để nhận gọng kính, tròng kính và khám mắt miễn phí.",
+ "committee_image": {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731399793/sknaxybsb8inq0xjhji2.png",
+ "alt": "opthalmology.png"
+ },
+ "_last_modified": "2024-11-12T10:17:31.906Z",
+ "_created_at": "2024-11-12T08:23:13.440Z"
+ },
+ "hepatitis": {
+ "_id": "67331088dc67a045cf0eca7c",
+ "_name": "staging - hepatitis",
+ "_published": true,
+ "committee_name_en": "Hepatitis ",
+ "committee_name_zh": "肝炎科部门",
+ "committee_name_hmn": "Kab Mob Rau Daim Siab",
+ "committee_name_ko": "간염",
+ "committee_name_es": "Hepatitis",
+ "committee_name_vi": "Ban viêm gan",
+ "committee_description_en": "Hepatitis is one of the leading causes of liver cancer, and the Asian population is at a significantly greater risk for having the disease. As a result, the Hepatitis Committee is devoted to identifying and treating this high-risk, underserved and uninsured Asian population in the Sacramento region. We currently provide free screening, vaccinations, and liver ultrasounds to patients. The Hepatitis Committee strives to educate our patients regarding Hepatitis B and encourage everyone to be screened and vaccinated.",
+ "committee_description_zh": "肝炎是肝癌的主要成因之一,亚洲人患这种疾病的风险明显较高。因此,肝炎科部门致力于识别和治疗居住在沙加缅度地区高风险、低收入和未纳保/保费不足的亚洲人。目前,我们为患者提供免费筛检、疫苗接种和肝脏超音波检查。肝炎科部门也致力于对患者进行有关乙型肝炎的教育,并鼓励每个人都进行筛检和疫苗接种。",
+ "committee_description_hmn": "Kab mob ua rau daim siab huam thiab o tuaj yog ib qho loj ntawm cov ua rau mob khees xaws hauv daim siab thiab cov neeg Esxias muaj kev pheej hmoo ntau dua rau kev muaj tus kabmob nov. Yog li ntawd, peb peb pawg hu ua Hepatitis Committee ho mob siab rau kho cov neeg Esxias muaj kev pheej hmoo ntawm tus mob nov, tsis muaj kev pab cuam thiab tsis muaj kev pov hwm hauv cheeb tsam Sacramento. Tam sim no peb muab kev kuaj dawb, tshuaj tiv thaiv, thiab kev siv lub tshuab hluav taws xob tua suab tsom rau hauv siab rau peb cov neeg mob. Peb Pawg Neeg Saib Xyuas Kab Mob Rau Daim Siab mob siab los qhia peb cov neeg mob txog kab mob siab B thiab txhawb kom txhua tus neeg raug tshuaj xyuas thiab txhaj tshuaj tiv thaiv.",
+ "committee_description_ko": "간염은 간암의 주요 원인 중 하나이며, 아시아계 인구는 이 질병에 걸릴 위험이 훨씬 높습니다. 따라서 간염 부서는 새크라멘토 지역의 이 고위험, 소외 및 무보험 아시아 인구를 식별하고 치료하는 데 전념하고 있습니다. 현재 우리는 환자에게 무료 검진, 예방 접종 및 간 초음파를 제공합니다. 간염 부서는 환자들에게 B형 간염에 대해 교육하고 모든 사람들이 검진 및 예방 접종을 받도록 권장합니다.",
+ "committee_description_es": "Hepatitis es una de las principales causas de cáncer de hígado y la población asiática tiene un riesgo significativamente mayor de tener la enfermedad. Como resultado, el Comité de Hepatitis se dedica a identificar y tratar a esta población asiática de alto riesgo, marginada y sin seguro en la región de Sacramento. Actualmente ofrecemos pruebas de detección, vacunas y ecografías hepáticas gratuitas a los pacientes. El Comité de Hepatitis se esfuerza por educar a nuestros pacientes sobre la Hepatitis B y alentar a todos a hacerse pruebas de detección y vacunarse. ",
+ "committee_description_vi": "Viêm gan là một trong những nguyên nhân hàng đầu gây ung thư gan và người dân Châu Á có nguy cơ mắc bệnh cao hơn đáng kể. Do đó, ban viêm gan tập trung vào việc xác định và điều trị nhóm dân số Châu Á có nguy cơ cao, không được phục vụ đầy đủ và không có bảo hiểm ở khu vực Sacramento. Chúng tôi hiện cung cấp sàng lọc, tiêm chủng và siêu âm gan miễn phí cho bệnh nhân. Ban viêm gan cố gắng giáo dục bệnh nhân về bệnh viêm gan B và khuyến khích mọi người đi sàng lọc và tiêm phòng.",
+ "committee_image": {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731399816/wze1lhujwealoanubxrt.png",
+ "alt": "hepatitis.png"
+ },
+ "_last_modified": "2024-11-12T10:17:39.354Z",
+ "_created_at": "2024-11-12T08:23:36.556Z"
+ },
+ "dermatology": {
+ "_id": "67330e30dc67a045cf0eca72",
+ "_name": "staging - dermatology",
+ "_published": true,
+ "committee_name_en": "Dermatology",
+ "committee_name_zh": "皮肤科部门",
+ "committee_name_hmn": "Ntsuam Xyuas Tawv Nqaij ",
+ "committee_name_ko": "피부과",
+ "committee_name_es": "Dermatología",
+ "committee_name_vi": "Ban da liễu",
+ "committee_description_en": "The Dermatology committee is trained and educated to provide quality healthcare to patients experiencing simple to complex skin disorders. Some of the more common conditions that we screen for are eczema, psoriasis, pemphigus, rosacea, acne vulgaris, and all types of cancers. We provide free consultations for skin care and can even perform skin biopsies to rule out concerns for malignancies. Our team is dedicated to help you feel better about your own skin and how you wear it. We look forward to meeting you!",
+ "committee_description_zh": "皮肤科部门经过培训和教育,为患有简单至复杂皮肤病的患者提供优质的医疗保健。我们筛查的一些较常见的疾病包括湿疹、牛皮癣、天疱疮、玫瑰痤疮、青春痘和所有类型的癌症。我们提供免费的皮肤护理咨询,甚至可以进行皮肤切片检查以排除恶性肿瘤的担忧。我们的团队致力于帮助您找回对自己的皮肤的自信。期待与您见面!",
+ "committee_description_hmn": " Peb pab pawg hu ua Dermatology Committee raug cob qhia thiab kawm los muab kev kho mob zoo rau cov neeg mob uas muaj mob rau daim tawv nqaij. Qee qhov xwm txheej uas peb tshuaj xyuas yog thaum koj daim tawv nqaij ua txhab txiag, ua caws pliav liab khaus ci nplias, ua sawv hlwv rau lub chaw mos thiab qhov ncauj, muab hlab ntsha liab liab nyob ntawm lub ntsej muag, mob pob kab ntxau, thiab txhua yam khees xaws. Peb muab kev sab laj pub dawb rau kev tu tawv nqaij thiab tuaj yeem muab kev tshem ib qho nqaij me me los mus ntsuam xyuas kom koj txhob nyuaj siab txog tias koj puas muaj nqaij hlav uas sib kis lawm. Peb pab neeg mob siab rau pab koj zoo siab ntawm koj cov tawv nqaij thiab seb koj hnav nws li cas. Peb tos ntsoov yuav ntsib koj!",
+ "committee_description_ko": "피부과 부서는 단순에서 복잡한 피부 질환을 겪고 있는 환자들에게 양질의 의료 서비스를 제공하도록 교육받았습니다. 주로 선별하는 질환으로는 습진, 건선, 천포창, 장미증, 여드름, 그리고 모든 종류의 암이 있습니다. 저희는 무료 피부 관리 상담을 제공하며, 악성 종양이 우려될 경우 피부 생검을 수행할 수 있습니다. 저희 부서는 환자가 본인의 피부를 더 잘 관리할 수 있도록 돕기 위해 헌신하고 있습니다. 여러분을 만나 뵙기를 기대합니다!",
+ "committee_description_es": "El comité de Dermatología está entrenado educado para brindar atención médica de calidad a pacientes que experimentan trastornos simples hasta complejos de la piel. Algunas de las afecciones más comunes que detectamos son eccema, psoriasis, pénfigo, rosácea, acné vulgar y todo tipo de cáncer. Brindamos consultas gratuitas para el cuidado de la piel e incluso podemos hacer biopsias de piel para descartar preocupaciones sobre neoplasias malignas. Nuestro equipo está dedicado a ayudarle a sentirse mejor con su propia piel. ¡Esperamos conocerte!",
+ "committee_description_vi": "Ban da liễu được đào tạo và giáo dục để cung cấp dịch vụ chăm sóc sức khỏe chất lượng cho những bệnh nhân gặp phải các vấn đề rối loạn về da từ đơn giản đến phức tạp. Một số tình trạng phổ biến hơn mà chúng tôi tầm soát là bệnh chàm, bệnh vẩy nến, bệnh pemphigus, chứng đỏ mặt, mụn trứng cá và tất cả các loại ung thư. Chúng tôi cung cấp tư vấn miễn phí về chăm sóc da và thậm chí có thể thực hiện sinh thiết da để loại trừ mối lo ngại về các khối u ác tính. Nhóm của chúng tôi sẽ tận tâm giúp bạn cảm thấy tốt hơn về làn da của chính mình. Chúng tôi mong được gặp bạn!",
+ "committee_image": {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731399215/ni8zqyzx8zt12slzwrks.png",
+ "alt": "dermatology.png"
+ },
+ "_last_modified": "2024-11-12T10:16:43.277Z",
+ "_created_at": "2024-11-12T08:13:36.109Z"
+ },
+ "cardiopulmonary": {
+ "_id": "67330b0fdc67a045cf0eca6a",
+ "_name": "staging - cardiopulmonary",
+ "_published": true,
+ "committee_name_en": "Cardiopulmonary",
+ "committee_name_zh": "心肺科部门",
+ "committee_name_hmn": "Lub Plawv Thiab Lub Ntsws",
+ "committee_name_ko": "심폐 클리닉",
+ "committee_name_es": "Cardiopulmonar",
+ "committee_name_vi": "Ban tim phổi",
+ "committee_description_en": "The Cardiopulmonary Committee educates patients about cardiovascular, pulmonary, and heart-related diseases. We assist patients who are at risk or already addicted to nicotine by providing free cessation resources. The Cardiopulmonary Committee holds monthly specialty clinics that offer electrocardiogram (EKG) strips, ankle brachial index (ABI) tests, and spirometry tests. Next Cardiopulmonary Clinic: Sunday, November 20, 2022",
+ "committee_description_zh": "心肺科部门旨在向患者普及心血管、肺部及心脏相关疾病的知识。 我们给予有尼古丁上瘾风险或已经上瘾的患者提供免费的戒烟资源和帮助。心肺科部门每月举办专科门诊并提供多项服务如:心电图、踝肱血压比值测试及肺活量测试。",
+ "committee_description_hmn": "Peb pab pawg hu ua Cardiopulmonary Committee qhia cov neeg mob txog kev mob rau lub plawv, lub ntsws, thiab kab mob plawv. Peb pab cov neeg mob muaj kev pheej hmoo lossis muaj kev haus luam yeeb kom lawv muab cov kev pabcuam pub dawb. Peb pab pawg tuav ib lub sijhawm ib zaug txhua txhua hli kuaj thiab muaj khoom dawb rau tij neeg. Peb muaj cov nplaum nplaum rau lub tshuab hluav taws xob ntsuas lub plawv dhia thiab peb pab ntsuas ntshav ntoj hauv hlab ntsha thiab pa tshuab seb ua pa ntau thiab ceev npaum li cas.",
+ "committee_description_ko": "심폐 클리닉은 환자들에게 심혈관, 폐, 심장 관련 질병에 대해 교육합니다. 또한 니코틴 중독 위험에 처한 환자나 이미 중독된 환자에게 무료 금연 자원을 제공합니다. 심폐 클리닉은 매월 전문 클리닉을 개최하여 심전도(EKG) 스트립, 발목 상완 지수(ABI) 검사, 폐활량 측정 검사를 제공합니다.",
+ "committee_description_es": "El Comité Cardiopulmonar educa a los pacientes sobre enfermedades cardiovasculares, pulmonares y enfermedades relacionadas con el corazón. Ayudamos a los pacientes que están en riesgo o que ya son adictos a la nicotina brindándoles recursos gratuitos para dejar de fumar. El comité Cardiopulmonar organiza clínicas especializadas cada mes que ofrecen tiras de electrocardiograma (ECG), pruebas de índice tobillo-brazo (ITB) y pruebas de espirometría. ",
+ "committee_description_vi": "Ban tim phổi giáo dục bệnh nhân về các bệnh tim mạch, phổi và các bệnh liên quan đến tim. Chúng tôi hỗ trợ những bệnh nhân có nguy cơ hoặc đã nghiện nicotine bằng cách cung cấp các nguồn hỗ trợ cai nghiện miễn phí. Ban Tim phổi tổ chức các phòng khám chuyên khoa hàng tháng cung cấp các dịch vụ như: điện tâm đồ (EKG), xét nghiệm chỉ số huyết áp mắt cá chân-cánh tay (ABI) và xét nghiệm đo dung tích phổi.",
+ "committee_image": {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731398419/vsevwmyuy3xc5eyqxzfv.png",
+ "alt": "cardiopulmonary.png"
+ },
+ "_last_modified": "2024-11-12T10:16:15.954Z",
+ "_created_at": "2024-11-12T08:00:15.439Z"
+ },
+ "womens-health": {
+ "_id": "67331058dc67a045cf0eca78",
+ "_name": "staging - women's health",
+ "_published": true,
+ "committee_name_en": "Women's Health",
+ "committee_name_zh": "妇科部门",
+ "committee_name_hmn": "Pab Poj Niam Kev Noj Qab Nyob Zoo",
+ "committee_name_ko": "여성 건강 (산부인과)",
+ "committee_name_es": "Salud de la Mujer",
+ "committee_name_vi": "Ban sức khỏe phụ nữ",
+ "committee_description_en": "The Women’s Health Committee ensures patients have access to preventative cancer screenings available to them and hosts health events to educate patients about breast and cervical cancers--topics that are avoided in many Asian families. Some services this committee provides are: referrals to Planned Parenthood for mammograms; enrollment into the Every Woman Counts program for uninsured patients along with follow ups; and scheduling patients for OB/GYN clinics, PAP smears, and clinical breast exams (CBEs).",
+ "committee_description_zh": "妇科部门会确保患者能够获得预防性癌症筛检,并会举办女性健康活动,向患者宣传有关乳癌和子宫颈癌的知识,这是许多亚洲家庭较少谈及的话题。妇科部门提供的服务包括: 转诊至计划生育协会进行乳房X 光检查,为未纳保险患者提供「Every Woman Counts」计画并作追踪;安排患者到妇产科诊所进行子宫颈抹片检查和临床乳房检查(CBEs)。",
+ "committee_description_hmn": "Peb pab pawg hu ua Women’s Health Committee pab kom cov neeg mob tau txais kev sab laj tiv thaiv khees xaws thiab tuav cov xym txheej kev nog qab haus huv los qhia cov neeg txog mob khees xaws rau lub mis thiab yav txha nqaj qaum caj dab–cov teeb meem tsev neeg Esxias tsis kam tham txog. Qee cov kev pabcuam no pawg neeg muab yog: xa mu rau Planned Parenthood kom ntsuam xyuas seb mis puas muaj mob; kos npe rau qhov kev pab cuam hu ua Every Woman Counts rau cov neeg mob tsis muaj ntawv pov hwm rau kev kho mob nrog kev taug qab ntsuam xyuas ntxiv mus; thiab teem caij rau neeg mob rau ntsib tus kws kho mob txais menyuam thiab saib xyuas cov poj niam muaj menyuam, tau ntsuam xyuas poj niam lub ncauj tsev menyuam, thiab tau ntsuam xyuas lub mis. ",
+ "committee_description_ko": "산부인과는 환자들이 예방적 암 검진을 받을 수 있도록 하며, 많은 아시아 가정에서 회피하는 주제인 유방암과 자궁경부암에 대해 환자들에게 교육하는 건강 행사를 개최합니다. 제공하는 서비스로는 유방촬영술을 위한 Planned Parenthood 의뢰, 무보험 환자를 위한 'Every Woman Counts' 프로그램 등록 및 후속 조치, 그리고 산부인과 클리닉, 자궁경부 세포진 검사(PAP 스미어), 임상 유방 검진(CBE) 예약이 있습니다.",
+ "committee_description_es": "El Comité de Salud de la Mujer garantiza que las pacientes tengan acceso a exámenes preventivos de cáncer disponibles y organiza eventos de salud para educar a las pacientes sobre el cáncer de mama y cáncer del cuello uterino, temas que se evitan en muchas familias asiáticas. Algunos servicios que brinda este comité son: referencias a Planned Parenthood para mamografías; inscripción en el programa Every Woman Counts (Cada Mujer Cuenta) para pacientes sin seguro junto con seguimientos médico; haciendo citas para clínicas de obstetricia y ginecología, pruebas de Papanicolau y exámenes clínicos de mama (ECM). ",
+ "committee_description_vi": "Ban sức khỏe phụ nữ đảm bảo bệnh nhân được tầm soát phòng ngừa ung thư và tổ chức các sự kiện sức khỏe để giáo dục bệnh nhân về ung thư vú và ung thư cổ tử cung, đây là những chủ đề bị nhiều gia đình châu Á né tránh. Một số dịch vụ mà ủy ban này cung cấp là: giới thiệu đến Planned Parenthood để chụp quang tuyến vú; đăng ký tham gia chương trình Every Woman Counts dành cho những bệnh nhân không có bảo hiểm cùng với việc theo dõi; và lên lịch cho bệnh nhân đến các phòng khám Sản/Phụ khoa, xét nghiệm ung thư cổ tử cung và khám vú (CBE).",
+ "committee_image": {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731399768/jehjqamk6vgmzox1lpkz.png",
+ "alt": "womens_health.png"
+ },
+ "_last_modified": "2024-11-12T10:17:24.480Z",
+ "_created_at": "2024-11-12T08:22:48.700Z"
+ },
+ "diabetes": {
+ "_id": "67330fe8dc67a045cf0eca74",
+ "_name": "staging - diabetes",
+ "_published": true,
+ "committee_name_en": "Diabetes",
+ "committee_name_zh": "糖尿病科部门",
+ "committee_name_hmn": "Ntshav Qab Zib",
+ "committee_name_ko": "당뇨병",
+ "committee_name_es": "Diabetes",
+ "committee_name_vi": "Ban tiểu đường ",
+ "committee_description_en": "The Diabetes Committee improves the health of patients by screening all patients for diabetes and conducting follow ups with prediabetic and diabetic patients. We also offer nutrition and diet counseling, show exercise demonstrations, and provide free glucometer kits and HgA1c blood tests. The committee holds annual patient education seminars and events to help patients feel equipped to manage their diabetes and overall health.",
+ "committee_description_zh": "糖尿病科部门通过对所有患者进行糖尿病筛查,并对糖尿病前期和糖尿病患者进行追踪,以改善患者的健康状况。我们还提供营养和饮食咨询、运动示范,并免费提供血糖监测仪和 HgA1c 血液测试。每年糖尿病科部门会为患者举办教育研讨会和活动,以帮助他们有能力管理糖尿病和整体健康。",
+ "committee_description_hmn": "Peb pab pawg hu ua Diabetes Committee txhim kho kev noj qab haus huv ntawm cov neeg mob los ntawm kev tshuaj xyuas tag nrho peb cov neeg mob cov ntshav qab zib thiab ua kev taug qab ntsuam xyuas ntxiv mus nrog cov neeg yuav luag mob ntshav qab zib thiab cov neeg twb mob ntshav qab zib. Peb kuj muaj kev qhia txog kev noj haus, qhia kev tawm dag zog, thiab muab cov khoom siv ntsuas ntshav qab zib uas dawb thiab cov kuaj ntshav HgA1c. Peb pab pawg tuav ib lub sijhawm txhua xyoo los pab qhia cov neeg mob kom muaj peev xwm tswj hwm lawv cov ntshav qab zib thiab kev noj qab haus huv.",
+ "committee_description_ko": "당뇨병 부서는 모든 환자에 대해 당뇨병 검진을 하고 전당뇨 및 당뇨 환자와의 후속 조치를 통해 환자의 건강을 증진합니다. 또한, 영양 및 식이 상담을 제공하고, 운동 시범을 보여주며, 무료 혈당계 키트와 HgA1c 혈액 검사를 제공합니다. 위원회는 환자들이 당뇨병과 전반적인 건강을 관리할 수 있도록 매년 환자 교육 세미나와 행사를 개최합니다.",
+ "committee_description_es": "El Comité de Diabetes mejora la salud de los pacientes examinando a todos los pacientes para detectar diabetes y haciendo consultas de seguimientos para los pacientes prediabéticos y diabéticos. También ofrecemos asesoramiento sobre nutrición y dieta, mostramos demostraciones de ejercicios y proporcionamos kits de glucómetro gratis y análisis de sangre de HgA1c gratuitos. El comité lleva seminarios y eventos anuales de educación para los pacientes y también para ayudar a los pacientes a sentirse preparados para controlar su diabetes y su salud en general. ",
+ "committee_description_vi": "Ban hỗ trợ bệnh nhân bị tiểu đường cải thiện sức khỏe của bệnh nhân bằng cách tầm soát tất cả bệnh nhân cho bệnh tiểu đường và tiến hành theo dõi bệnh nhân tiền tiểu đường và tiểu đường. Chúng tôi cũng cung cấp tư vấn về dinh dưỡng và chế độ ăn uống, trình diễn các bài tập thể dục và cung cấp bộ dụng cụ đo đường huyết và xét nghiệm máu HgA1c miễn phí. Ủy ban tổ chức các cuộc hội thảo và sự kiện giáo dục bệnh nhân hàng năm để giúp bệnh nhân cảm thấy được trang bị để quản lý bệnh tiểu đường và sức khỏe tổng thể của họ.",
+ "committee_image": {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731399656/iqdqoyzle1g323h0wcjv.png",
+ "alt": "diabetes.png"
+ },
+ "_last_modified": "2024-11-12T10:17:01.330Z",
+ "_created_at": "2024-11-12T08:20:56.605Z"
+ }
+}
\ No newline at end of file
diff --git a/src/messages/en.json b/src/messages/en.json
deleted file mode 100644
index 33a1cb9..0000000
--- a/src/messages/en.json
+++ /dev/null
@@ -1,285 +0,0 @@
-{
- "Index": {
- "mission": {
- "our_mission_text": "Our Mission",
- "text": "Paul Hom Asian Clinic is a 501C(3) non-profit organization committed to serving underserved and uninsured Asian populations in a linguistically and culturally sensitive manner.\n\nAt Paul Hom we provide free primary care to the medically underserved, quality community medicine for our local community and interpretation services for the underserved Asian community.\n\nOur success is a result of the collaborative effort of all our health professional and undergraduate staff working to provide such important services."
- },
- "visit_us": {
- "visit_us_text": "Visit Us!",
- "contact_instruction": "Leave us a voicemail with your name and phone number, and we'll call you back to book an appointment.",
- "phone": "(916) 736-3966",
- "message": "Message",
- "address": "6341 Folsom Blvd Sacramento, CA 95819"
- },
- "closure_dates_text": "Closure Dates",
- "upcoming_events_text": "Upcoming Events",
- "image_gallery_overlay_text": {
- "title": "A Passion To Serve",
- "description": "Quality clinical services for our local community"
- }
- },
- "About": {
- "page_title_and_subtitle": {
- "title": "The Legacy of Paul Hom",
- "description": "We are the oldest Asian clinic in the United States."
- },
- "commitment_statement": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients.",
- "sister_clinics": {
- "clinic_category_title": "Our Sister Clinics",
- "clinic_count": "2",
- "clinic1": {
- "name": "VN Cares",
- "website_link": "https://www.vncares.org/"
- },
- "clinic2": {
- "name": "HLUB",
- "website_link": "https://hlubclinic.wordpress.com/"
- }
- },
- "ucd_clinics": {
- "clinic_category_title": "UC Davis Student-Run Clinics",
- "clinic_count": "6",
- "clinic1": {
- "name": "Bayanihan",
- "website_link": "https://www.bayanihanclinic.com/"
- },
- "clinic2": {
- "name": "Clinica Tepati",
- "website_link": "https://clinicatepati.com/"
- },
- "clinic3": {
- "name": "Imani clinic",
- "website_link": "https://www.imaniclinic.org/"
- },
- "clinic4": {
- "name": "Joan Viteri Memorial Clinic",
- "website_link": "https://www.jvmclinic.com/"
- },
- "clinic5": {
- "name": "Shifa Clinic",
- "website_link": "https://shifaclinic.org/"
- },
- "clinic6": {
- "name": "Willow Clinic",
- "website_link": "https://www.willowclinic.org/"
- }
- },
- "history_cards": {
- "card_count": "5",
- "card1": {
- "title": "1971 Our Beginning",
- "description": "In 1971, a group of UC Davis medical students led by Paul Hom held meetings with a group of activist undergraduate students from the California State University of Sacramento to discuss improving health care for elderly Asians and new immigrant families who were struggling to obtain adequate health care due to socioeconomic and language barriers. They decided to start a free clinic to target this problem.",
- "image_description": "portrait of the founder, Paul Hom"
- },
- "card2": {
- "title": "Creating a Team",
- "description": "Paul Hom approached Dr. Lindy Kumagai, one of the few Asian medical faculty members at UC Davis School of Medicine, and asked if he would be the medical director of the clinic. Dr. Lindy Kumagai was an advocate for the Civil Rights Movement and underserved Asian communities. He accepted the position and worked with Paul Hom and UC Davis medical students for the next 30 years.",
- "image_description": "portrait of Dr.Lindy Kumagai"
- },
- "card3": {
- "title": "Early Operations",
- "description": "The ‘Asian Clinic’, as it was called before being renamed to the Paul Hom Asian Clinic, operated out of the back of a bookstore providing primary care services to about 9-10 patients every Saturday. After some time, the community closed the bookstore and the clinic moved to the Sacramento Projects in New Helvecia (low income housing). The clinic later moved to its current location at the Safe Credit Union on Folsom Boulevard.",
- "image_description": "Picture of former clinic"
- },
- "card4": {
- "title": "Continuing the Legacy",
- "description": "After serving for 30 years, Dr. Lindy Kumagai passed on his position as medical director to Dr. Ronald Guy Jan. Dr. Jan had been volunteering for the clinic since 1980. He had an undying dedication and passion for serving the underserved. In the midst of starting his own practice, Dr. Jan would do his rounds between seven different hospitals and then come to the clinic to take on any patient that needed his help. Dr. Jan served for about 18-20 years before passing his position to the current medical director Dr. Christian Bohringer.",
- "image_description": "The Entire Medical Team in a group picture, smiling"
- },
- "card5": {
- "title": "Today",
- "description": "The existence of the Paul Hom Asian Clinic has proved beneficial not only to the patients, but also to the undergraduate students, medical students, and physicians who volunteer their time and efforts. The legacy of Dr. Paul Hom continues to thrive and is the oldest Asian clinic in all of America.",
- "image_description": "Current Student-Run Clinic Team in a group picture, smiling"
- }
- }
- },
- "GetInvolved": {
- "page_title": "Get Involved",
- "card1": {
- "title_short": "Physicians & Residents",
- "title_long": "Physicians and Residents",
- "sign_up_link": "/",
- "content_1": "Physicians and residents are a valuable component to our clinic because they serve as teachers and mentors to health professional students and undergrad patient advocates. They help facilitate the clinical process, such as guiding medical students in making a correct diagnosis, writing prescriptions for our patients, and providing medical services and advice.",
- "content_2": "Any physician and resident, primary care and specialty alike, is welcomed and appreciated in our clinic! If you are interested in volunteering as a preceptor please contact our physician scheduling team at: \n phac.physician.scheduler@gmail.com"
- },
- "card2": {
- "title_short": "Undergrad. Patient Advocates",
- "title_long": "Undergraduate Patient Advocates",
- "sign_up_link": "/",
- "content_1": "The term Patient Advocate aptly describes an undergraduate volunteer at the Paul Hom Asian Clinic. Patient Advocates mainly act as interpreters for predominantly Cantonese, Mandarin, and Vietnamese patients who visit the clinic. They also have a variety of responsibilities such as in taking vital signs, assisting in the dispensing of medications, and assisting medical students with patient care.",
- "content_2": "They continue to play an important role as patient educators and interpreters for our clinic. In addition, they have the opportunity to learn more about providing social services to the underserved. Our Fall 2023 undergraduate application is currently open!! If you have any additional questions, please contact phacugco-d@ucdavis.edu"
- },
- "card3": {
- "title_short": "Health Professional Students",
- "title_long": "Health Professional Students",
- "sign_up_link": "/",
- "content_1": "Health professional students are exposed to a variety of clinical responsibilities, such as interviewing patients, conducting physical exams, and performing laboratory procedures (blood draw, pap smears, vaccination, etc.). In addition, students also learn more about working with the underserved Asian population. To volunteer at our clinic, please sign up on the Inter-clinic Google Doc.",
- "content_2": "Dress code: business-casual with white coat and badge"
- },
- "details_text": "Details",
- "sign_up_text": "Sign Up",
- "donate_today_text": "Donate Today!",
- "donation_instruction": "Paul Hom Asian Clinic is a 501(c)(3) organization. If you would like to support our clinic, donations can be mailed to:",
- "address": "Paul Hom Asian Clinic\n6341 Folsom Blvd\nSacramento, CA 95819",
- "thank_you_text": "We thank you for your generoristy!"
- },
- "Services": {
- "page_title": "Our Services",
- "regular_service": {
- "service1": {
- "title": "Primary Care Services",
- "description": "Every Saturday"
- },
- "service2": {
- "title": "Cancer Screenings",
- "description": "First Sunday Monthly"
- }
- },
- "services_slides": {
- "slide_count": "4",
- "slide1": {
- "title": "Specialty Clinics",
- "count_of_bullet_points": "4",
- "list": {
- "item1": "Musculoskeletal Clinic (MSK)",
- "item2": "Dermatology",
- "item3": "Cardiopulmonary Clinic",
- "item4": "Liver Clinic"
- }
- },
- "slide2": {
- "title": "Hepatitis",
- "count_of_bullet_points": "5",
- "list": {
- "item1": "Liver cancer is often tied to Hepatitis B",
- "item2": "Transmission: blood, sex, mother-to-child; late diagnosis common",
- "item3": "Asians more vulnerable, higher infection rates, mortality",
- "item4": "Screening, vaccination, tratments available",
- "item5": "Free vaccines"
- }
- },
- "slide3": {
- "title": "Health Education & Preventative Measures",
- "count_of_bullet_points": "3",
- "list": {
- "item1": "Hypertension Workshops",
- "item2": "Nutrition Counseling",
- "item3": "Health Fair"
- }
- },
- "slide4": {
- "title": "Vaccines",
- "count_of_bullet_points": "3",
- "list": {
- "item1": "Hepatitis",
- "item2": "Annual flu-shots",
- "item3": "Health Fair"
- }
- }
- },
- "referrals_title_text": "Referrals",
- "referrals": {
- "item1": "Surgery with SPIRIT program",
- "item2": "UCDMC",
- "item3": "Primary Care Clinic"
- },
- "translators_title_text": "Translators",
- "translators": {
- "item1": "Cantonese",
- "item2": "Mandaring",
- "item3": "Korean",
- "item4": "Taishanese",
- "item5": "Vietnamese",
- "item6": "Hmong"
- }
- },
- "Committees": {
- "title_text": "Meet Our Committees!",
- "back_to_committees": "Back to committees",
- "count_of_committees": "9",
- "committee_names": {
- "item1": "cardiopulmonary",
- "item2": "covered-california",
- "item3": "patient-assistance-program",
- "item4": "dermatology",
- "item5": "diabetes",
- "item6": "hepatitis",
- "item7": "ophthalmology",
- "item8": "womens-health",
- "item9": "neurology"
- },
- "cards": {
- "cardiopulmonary": {
- "name": "Cardiopulmonary",
- "image": "/images/committees/cardiopulmonary.png",
- "path": "/committees/cardiopulmonary",
- "description": "The Cardiopulmonary Committee educates patients about cardiovascular, pulmonary, and heart-related diseases. We assist patients who are at risk or already addicted to nicotine by providing free cessation resources. The Cardiopulmonary Committee holds monthly specialty clinics that offer electrocardiogram (EKG) strips, ankle brachial index (ABI) tests, and spirometry tests. \n \n Next Cardiopulmonary Clinic: Sunday, November 20, 2022"
- },
- "covered-california": {
- "name": "Covered California",
- "image": "/images/committees/covered_california.png",
- "path": "/committees/covered-california",
- "description": "The Covered California Committee assists patients in signing up for affordable health insurance through Covered California, Medi-Cal and Medicare. All Covered California Co-Directors are certified enrollment counselors for Covered California and, therefore, are able to work with patients through the entirety of the insurance application. The Covered California Committee also provides assistance in SPIRIT referrals--where patients can potentially have their expensive surgeries paid for."
- },
- "dermatology": {
- "name": "Dermatology",
- "image": "/images/committees/dermatology.png",
- "path": "/committees/dermatology",
- "description": "The Dermatology committee is trained and educated to provide quality healthcare to patients experiencing simple to complex skin disorders. Some of the more common conditions that we screen for are eczema, psoriasis, pemphigus, rosacea, acne vulgaris, and all types of cancers. We provide free consultations for skin care and can even perform skin biopsies to rule out concerns for malignancies. Our team is dedicated to help you feel better about your own skin and how you wear it. We look forward to meeting you!\n \n Dermatology Clinics on Sunday, 9/25, 10/16, 12/11"
- },
- "diabetes": {
- "name": "Diabetes",
- "image": "/images/committees/diabetes.png",
- "path": "/committees/diabetes",
- "description": "The Diabetes Committee improves the health of patients by screening all patients for diabetes and conducting follow ups with prediabetic and diabetic patients. We also offer nutrition and diet counseling, show exercise demonstrations, and provide free glucometer kits and HgA1c blood tests. The committee holds annual patient education seminars and events to help patients feel equipped to manage their diabetes and overall health."
- },
- "patient-assistance-program": {
- "name": "Patient Assistance Program",
- "image": "/images/committees/patient_assistance_program.png",
- "path": "/committees/patient-assistance-program",
- "description": "The Patient Assistance Program (PAP) Committee enrolls low-income and uninsured/underinsured patients to receive brand-name medications at no cost from participating pharmaceutical companies. On average, we help patients save $130,000 a year on the medication cost. In addition, we have been leading various projects that provide patients free resources such as: accessories for injectable medications (syringes, needles, sharps containers, and needle clippers) and medication-related infographics. Recently, we have started collaborating with GoodRx to provide qualified patients monthly pre-paid debit cards for their chronic generic medications. Furthermore, the PAP Committee works closely with Dr. Jan and Dr. Pauly to monitor patients’ medication compliance, effectiveness, and safety, and to accommodate patients' other special needs on a case-by-case basis."
- },
- "hepatitis": {
- "name": "Hepatitis",
- "image": "/images/committees/hepatitis.png",
- "path": "/committees/hepatitis",
- "description": "Hepatitis is one of the leading causes of liver cancer, and the Asian population is at a significantly greater risk for having the disease. As a result, the Hepatitis Committee is devoted to identifying and treating this high-risk, underserved and uninsured Asian population in the Sacramento region. We currently provide free screening, vaccinations, and liver ultrasounds to patients. The Hepatitis Committee strives to educate our patients regarding Hepatitis B and encourage everyone to be screened and vaccinated."
- },
- "neurology": {
- "name": "Neurology",
- "image": "/images/committees/neurology.png",
- "path": "/committees/neurology",
- "description": "The Neurology Clinic assists patients with neurological issues, such as problems with memory, neuropathic pain (numb, tingling, or burning feet/hands), sleep, migraine, seizures, and any other issues related to the brain. We also offer dementia screening for patients who are older than 65 years of age and provide access to resources for patients, caretakers, and family members of individuals with memory loss issues."
- },
- "womens-health": {
- "name": "Women's Health",
- "image": "/images/committees/womens_health.png",
- "path": "/committees/womens-health",
- "description": "The Women’s Health Committee ensures patients have access to preventative cancer screenings available to them and hosts health events to educate patients about breast and cervical cancers--topics that are avoided in many Asian families. Some services this committee provides are: referrals to Planned Parenthood for mammograms; enrollment into the Every Woman Counts program for uninsured patients along with follow ups; and scheduling patients for OB/GYN clinics, PAP smears, and clinical breast exams (CBEs)."
- },
- "ophthalmology": {
- "name": "Ophthalmology",
- "image": "/images/committees/opthalmology.png",
- "path": "/committees/ophthalmology",
- "description": "The Ophthalmology Committee monitors our patients’ history for eye conditions and provides patients with an assessment and follow-up care plan if needed. The committee conducts pupillary exams, intraocular pressure exams, visual acuity exams, slit lamp exams, and retinal exams during our clinic hours. Ophthalmology clinics are held quarterly on Sundays from 8:30am to 12pm. Depending on a patient’s insurance status and visual acuity, the Ophthalmology Committee can provide a VSP voucher which patients can use at a local optometrist’s office to obtain free-of-charge eyeglass frames and lenses and eye exams."
- }
- }
- },
- "Header": {
- "home": "HOME",
- "about_us": "ABOUT US",
- "services": "SERVICES",
- "committees": "COMMITEES",
- "get_involved": "GET INVOLVED",
- "clinic_name": "Paul Hom Asian Clinic",
- "clinic_description": "A Student-Run Clinic at UC Davis",
- "contact_us": "CONTACT US",
- "address": "6341 Folsom Blvd Sacramento, CA 95819",
- "thank_you_sponsors_text": "THANK YOU TO OUR SPONSORS FOR THEIR GENEROUS SUPPORT",
- "include_credit_line": "Designed & Developed with 🤍 by #include @ Davis"
- },
- "404page": {
- "PageNotFound": "Error 404: Page not found",
- "BackToHome": "Back to home"
- }
-}
\ No newline at end of file
diff --git a/src/messages/es.json b/src/messages/es.json
deleted file mode 100644
index 7ca75c1..0000000
--- a/src/messages/es.json
+++ /dev/null
@@ -1,285 +0,0 @@
-{
- "Index": {
- "mission": {
- "our_mission_text": "Our Mission",
- "text": "Paul Hom Asian Clinic is a 501C(3) non-profit organization committed to serving underserved and uninsured Asian populations in a linguistically and culturally sensitive manner.\n\nAt Paul Hom we provide free primary care to the medically underserved, quality community medicine for our local community and interpretation services for the underserved Asian community.\n\nOur success is a result of the collaborative effort of all our health professional and undergraduate staff working to provide such important services."
- },
- "visit_us": {
- "visit_us_text": "Visit Us!",
- "contact_instruction": "Leave us a voicemail with your name and phone number, and we'll call you back to book an appointment.",
- "phone": "(916) 736-3966",
- "message": "Message",
- "address": "6341 Folsom Blvd Sacramento, CA 95819"
- },
- "closure_dates_text": "Closure Dates",
- "upcoming_events_text": "Upcoming Events",
- "image_gallery_overlay_text": {
- "title": "A Passion To Serve",
- "description": "Quality clinical services for our local community"
- }
- },
- "About": {
- "page_title_and_subtitle": {
- "title": "The Legacy of Paul Hom",
- "description": "We are the oldest Asian clinic in the United States."
- },
- "commitment_statement": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients.",
- "sister_clinics": {
- "clinic_category_title": "Our Sister Clinics",
- "clinic_count": "2",
- "clinic1": {
- "name": "VN Cares",
- "website_link": "https://www.vncares.org/"
- },
- "clinic2": {
- "name": "HLUB",
- "website_link": "https://hlubclinic.wordpress.com/"
- }
- },
- "ucd_clinics": {
- "clinic_category_title": "UC Davis Student-Run Clinics",
- "clinic_count": "6",
- "clinic1": {
- "name": "Bayanihan",
- "website_link": "https://www.bayanihanclinic.com/"
- },
- "clinic2": {
- "name": "Clinica Tepati",
- "website_link": "https://clinicatepati.com/"
- },
- "clinic3": {
- "name": "Imani clinic",
- "website_link": "https://www.imaniclinic.org/"
- },
- "clinic4": {
- "name": "Joan Viteri Memorial Clinic",
- "website_link": "https://www.jvmclinic.com/"
- },
- "clinic5": {
- "name": "Shifa Clinic",
- "website_link": "https://shifaclinic.org/"
- },
- "clinic6": {
- "name": "Willow Clinic",
- "website_link": "https://www.willowclinic.org/"
- }
- },
- "history_cards": {
- "card_count": "5",
- "card1": {
- "title": "1971 Our Beginning",
- "description": "In 1971, a group of UC Davis medical students led by Paul Hom held meetings with a group of activist undergraduate students from the California State University of Sacramento to discuss improving health care for elderly Asians and new immigrant families who were struggling to obtain adequate health care due to socioeconomic and language barriers. They decided to start a free clinic to target this problem.",
- "image_description": "portrait of the founder, Paul Hom"
- },
- "card2": {
- "title": "Creating a Team",
- "description": "Paul Hom approached Dr. Lindy Kumagai, one of the few Asian medical faculty members at UC Davis School of Medicine, and asked if he would be the medical director of the clinic. Dr. Lindy Kumagai was an advocate for the Civil Rights Movement and underserved Asian communities. He accepted the position and worked with Paul Hom and UC Davis medical students for the next 30 years.",
- "image_description": "portrait of Dr.Lindy Kumagai"
- },
- "card3": {
- "title": "Early Operations",
- "description": "The ‘Asian Clinic’, as it was called before being renamed to the Paul Hom Asian Clinic, operated out of the back of a bookstore providing primary care services to about 9-10 patients every Saturday. After some time, the community closed the bookstore and the clinic moved to the Sacramento Projects in New Helvecia (low income housing). The clinic later moved to its current location at the Safe Credit Union on Folsom Boulevard.",
- "image_description": "Picture of former clinic"
- },
- "card4": {
- "title": "Continuing the Legacy",
- "description": "After serving for 30 years, Dr. Lindy Kumagai passed on his position as medical director to Dr. Ronald Guy Jan. Dr. Jan had been volunteering for the clinic since 1980. He had an undying dedication and passion for serving the underserved. In the midst of starting his own practice, Dr. Jan would do his rounds between seven different hospitals and then come to the clinic to take on any patient that needed his help. Dr. Jan served for about 18-20 years before passing his position to the current medical director Dr. Christian Bohringer.",
- "image_description": "The Entire Medical Team in a group picture, smiling"
- },
- "card5": {
- "title": "Today",
- "description": "The existence of the Paul Hom Asian Clinic has proved beneficial not only to the patients, but also to the undergraduate students, medical students, and physicians who volunteer their time and efforts. The legacy of Dr. Paul Hom continues to thrive and is the oldest Asian clinic in all of America.",
- "image_description": "Current Student-Run Clinic Team in a group picture, smiling"
- }
- }
- },
- "GetInvolved": {
- "page_title": "Get Involved",
- "card1": {
- "title_short": "Physicians & Residents",
- "title_long": "Physicians and Residents",
- "sign_up_link": "/",
- "content_1": "Physicians and residents are a valuable component to our clinic because they serve as teachers and mentors to health professional students and undergrad patient advocates. They help facilitate the clinical process, such as guiding medical students in making a correct diagnosis, writing prescriptions for our patients, and providing medical services and advice.",
- "content_2": "Any physician and resident, primary care and specialty alike, is welcomed and appreciated in our clinic! If you are interested in volunteering as a preceptor please contact our physician scheduling team at: \n phac.physician.scheduler@gmail.com"
- },
- "card2": {
- "title_short": "Undergrad. Patient Advocates",
- "title_long": "Undergraduate Patient Advocates",
- "sign_up_link": "/",
- "content_1": "The term Patient Advocate aptly describes an undergraduate volunteer at the Paul Hom Asian Clinic. Patient Advocates mainly act as interpreters for predominantly Cantonese, Mandarin, and Vietnamese patients who visit the clinic. They also have a variety of responsibilities such as in taking vital signs, assisting in the dispensing of medications, and assisting medical students with patient care.",
- "content_2": "They continue to play an important role as patient educators and interpreters for our clinic. In addition, they have the opportunity to learn more about providing social services to the underserved. Our Fall 2023 undergraduate application is currently open!! If you have any additional questions, please contact phacugco-d@ucdavis.edu"
- },
- "card3": {
- "title_short": "Health Professional Students",
- "title_long": "Health Professional Students",
- "sign_up_link": "/",
- "content_1": "Health professional students are exposed to a variety of clinical responsibilities, such as interviewing patients, conducting physical exams, and performing laboratory procedures (blood draw, pap smears, vaccination, etc.). In addition, students also learn more about working with the underserved Asian population. To volunteer at our clinic, please sign up on the Inter-clinic Google Doc.",
- "content_2": "Dress code: business-casual with white coat and badge"
- },
- "details_text": "Details",
- "sign_up_text": "Sign Up",
- "donate_today_text": "Donate Today!",
- "donation_instruction": "Paul Hom Asian Clinic is a 501(c)(3) organization. If you would like to support our clinic, donations can be mailed to:",
- "address": "Paul Hom Asian Clinic\n6341 Folsom Blvd\nSacramento, CA 95819",
- "thank_you_text": "We thank you for your generoristy!"
- },
- "Services": {
- "page_title": "Our Services",
- "regular_service": {
- "service1": {
- "title": "Primary Care Services",
- "description": "Every Saturday"
- },
- "service2": {
- "title": "Cancer Screenings",
- "description": "First Sunday Monthly"
- }
- },
- "services_slides":{
- "slide_count": "4",
- "slide1": {
- "title": "Specialty Clinics",
- "count_of_bullet_points": "4",
- "list": {
- "item1": "Musculoskeletal Clinic (MSK)",
- "item2": "Dermatology",
- "item3": "Cardiopulmonary Clinic",
- "item4": "Liver Clinic"
- }
- },
- "slide2": {
- "title": "Hepatitis",
- "count_of_bullet_points": "5",
- "list": {
- "item1": "Liver cancer is often tied to Hepatitis B",
- "item2": "Transmission: blood, sex, mother-to-child; late diagnosis common",
- "item3": "Asians more vulnerable, higher infection rates, mortality",
- "item4": "Screening, vaccination, tratments available",
- "item5": "Free vaccines"
- }
- },
- "slide3": {
- "title": "Health Education & Preventative Measures",
- "count_of_bullet_points": "3",
- "list": {
- "item1": "Hypertension Workshops",
- "item2": "Nutrition Counseling",
- "item3": "Health Fair"
- }
- },
- "slide4": {
- "title": "Vaccines",
- "count_of_bullet_points": "3",
- "list": {
- "item1": "Hepatitis",
- "item2": "Annual flu-shots",
- "item3": "Health Fair"
- }
- }
- },
- "referrals_title_text": "Referrals",
- "referrals": {
- "item1": "Surgery with SPIRIT program",
- "item2": "UCDMC",
- "item3": "Primary Care Clinic"
- },
- "translators_title_text": "Translators",
- "translators": {
- "item1": "Cantonese",
- "item2": "Mandaring",
- "item3": "Korean",
- "item4": "Taishanese",
- "item5": "Vietnamese",
- "item6": "Hmong"
- }
- },
- "Committees": {
- "title_text": "Meet Our Committees!",
- "back_to_committees": "Back to committees",
- "count_of_committees": "9",
- "committee_names": {
- "item1": "cardiopulmonary",
- "item2": "covered-california",
- "item3": "patient-assistance-program",
- "item4": "dermatology",
- "item5": "diabetes",
- "item6": "hepatitis",
- "item7": "ophthalmology",
- "item8": "womens-health",
- "item9": "neurology"
- },
- "cards": {
- "cardiopulmonary": {
- "name": "Cardiopulmonary",
- "image": "/images/committees/cardiopulmonary.png",
- "path": "/committees/cardiopulmonary",
- "description": "The Cardiopulmonary Committee educates patients about cardiovascular, pulmonary, and heart-related diseases. We assist patients who are at risk or already addicted to nicotine by providing free cessation resources. The Cardiopulmonary Committee holds monthly specialty clinics that offer electrocardiogram (EKG) strips, ankle brachial index (ABI) tests, and spirometry tests. \n \n Next Cardiopulmonary Clinic: Sunday, November 20, 2022"
- },
- "covered-california": {
- "name": "Covered California",
- "image": "/images/committees/covered_california.png",
- "path": "/committees/covered-california",
- "description": "The Covered California Committee assists patients in signing up for affordable health insurance through Covered California, Medi-Cal and Medicare. All Covered California Co-Directors are certified enrollment counselors for Covered California and, therefore, are able to work with patients through the entirety of the insurance application. The Covered California Committee also provides assistance in SPIRIT referrals--where patients can potentially have their expensive surgeries paid for."
- },
- "dermatology": {
- "name": "Dermatology",
- "image": "/images/committees/dermatology.png",
- "path": "/committees/dermatology",
- "description": "The Dermatology committee is trained and educated to provide quality healthcare to patients experiencing simple to complex skin disorders. Some of the more common conditions that we screen for are eczema, psoriasis, pemphigus, rosacea, acne vulgaris, and all types of cancers. We provide free consultations for skin care and can even perform skin biopsies to rule out concerns for malignancies. Our team is dedicated to help you feel better about your own skin and how you wear it. We look forward to meeting you!\n \n Dermatology Clinics on Sunday, 9/25, 10/16, 12/11"
- },
- "diabetes": {
- "name": "Diabetes",
- "image": "/images/committees/diabetes.png",
- "path": "/committees/diabetes",
- "description": "The Diabetes Committee improves the health of patients by screening all patients for diabetes and conducting follow ups with prediabetic and diabetic patients. We also offer nutrition and diet counseling, show exercise demonstrations, and provide free glucometer kits and HgA1c blood tests. The committee holds annual patient education seminars and events to help patients feel equipped to manage their diabetes and overall health."
- },
- "patient-assistance-program": {
- "name": "Patient Assistance Program",
- "image": "/images/committees/patient_assistance_program.png",
- "path": "/committees/patient-assistance-program",
- "description": "The Patient Assistance Program (PAP) Committee enrolls low-income and uninsured/underinsured patients to receive brand-name medications at no cost from participating pharmaceutical companies. On average, we help patients save $130,000 a year on the medication cost. In addition, we have been leading various projects that provide patients free resources such as: accessories for injectable medications (syringes, needles, sharps containers, and needle clippers) and medication-related infographics. Recently, we have started collaborating with GoodRx to provide qualified patients monthly pre-paid debit cards for their chronic generic medications. Furthermore, the PAP Committee works closely with Dr. Jan and Dr. Pauly to monitor patients’ medication compliance, effectiveness, and safety, and to accommodate patients' other special needs on a case-by-case basis."
- },
- "hepatitis": {
- "name": "Hepatitis",
- "image": "/images/committees/hepatitis.png",
- "path": "/committees/hepatitis",
- "description": "Hepatitis is one of the leading causes of liver cancer, and the Asian population is at a significantly greater risk for having the disease. As a result, the Hepatitis Committee is devoted to identifying and treating this high-risk, underserved and uninsured Asian population in the Sacramento region. We currently provide free screening, vaccinations, and liver ultrasounds to patients. The Hepatitis Committee strives to educate our patients regarding Hepatitis B and encourage everyone to be screened and vaccinated."
- },
- "neurology": {
- "name": "Neurology",
- "image": "/images/committees/neurology.png",
- "path": "/committees/neurology",
- "description": "The Neurology Clinic assists patients with neurological issues, such as problems with memory, neuropathic pain (numb, tingling, or burning feet/hands), sleep, migraine, seizures, and any other issues related to the brain. We also offer dementia screening for patients who are older than 65 years of age and provide access to resources for patients, caretakers, and family members of individuals with memory loss issues."
- },
- "womens-health": {
- "name": "Women's Health",
- "image": "/images/committees/womens_health.png",
- "path": "/committees/womens-health",
- "description": "The Women’s Health Committee ensures patients have access to preventative cancer screenings available to them and hosts health events to educate patients about breast and cervical cancers--topics that are avoided in many Asian families. Some services this committee provides are: referrals to Planned Parenthood for mammograms; enrollment into the Every Woman Counts program for uninsured patients along with follow ups; and scheduling patients for OB/GYN clinics, PAP smears, and clinical breast exams (CBEs)."
- },
- "ophthalmology": {
- "name": "Ophthalmology",
- "image": "/images/committees/ophthalmology.png",
- "path": "/committees/ophthalmology",
- "description": "The Ophthalmology Committee monitors our patients’ history for eye conditions and provides patients with an assessment and follow-up care plan if needed. The committee conducts pupillary exams, intraocular pressure exams, visual acuity exams, slit lamp exams, and retinal exams during our clinic hours. Ophthalmology clinics are held quarterly on Sundays from 8:30am to 12pm. Depending on a patient’s insurance status and visual acuity, the Ophthalmology Committee can provide a VSP voucher which patients can use at a local optometrist’s office to obtain free-of-charge eyeglass frames and lenses and eye exams."
- }
- }
- },
- "Header": {
- "home": "HOME",
- "about_us": "ABOUT US",
- "services": "SERVICES",
- "committees": "COMMITEES",
- "get_involved": "GET INVOLVED",
- "clinic_name": "Paul Hom Asian Clinic",
- "clinic_description": "A Student-Run Clinic at UC Davis",
- "contact_us": "CONTACT US",
- "address": "6341 Folsom Blvd Sacramento, CA 95819",
- "thank_you_sponsors_text": "THANK YOU TO OUR SPONSORS FOR THEIR GENEROUS SUPPORT",
- "include_credit_line": "Designed & Developed with 🤍 by #include @ Davis"
- },
- "404page" : {
- "PageNotFound": "Error 404: Page not found",
- "BackToHome": "Back to home"
- }
-}
\ No newline at end of file
diff --git a/src/messages/general.json b/src/messages/general.json
new file mode 100644
index 0000000..5960dc0
--- /dev/null
+++ b/src/messages/general.json
@@ -0,0 +1,92 @@
+{
+ "_id": "673313e7dc67a045cf0eca7d",
+ "_name": "staging",
+ "_published": true,
+ "title_text_en": "Meet Our Committees!",
+ "title_text_zh": "会见专科部门!",
+ "title_text_hmn": "Paub Txog Peb Cov Pawg Pab Kev Noj Qab Nyob Zoo",
+ "title_text_ko": "각 부서를 만나보세요!",
+ "title_text_es": "¡Conoce nuestros Comités!",
+ "title_text_vi": "Giới thiệu uỷ ban của phòng khám",
+ "back_to_committees_en": "Back To Committees",
+ "back_to_committees_zh": "返回部门",
+ "back_to_committees_hmn": "Rov Qab Mus Rau Peb Cov Pawg Pab Kev Noj Qab Nyob Zoo",
+ "back_to_committees_ko": "부서로 돌아가기",
+ "back_to_committees_es": "Volver a Comités",
+ "back_to_committees_vi": "Quay về trang uỷ ban của phòng khám",
+ "home_en": "Home",
+ "home_zh": "主页",
+ "home_hmn": "Tsev",
+ "home_ko": "홈",
+ "home_es": "Página inicial",
+ "home_vi": "Trang chủ",
+ "about_us_en": "About Us",
+ "about_us_zh": "关于我们",
+ "about_us_hmn": "Txog peb",
+ "about_us_ko": "소개",
+ "about_us_es": "Página sobre nosotros",
+ "about_us_vi": " Thông tin về phòng khám",
+ "services_en": "Services",
+ "services_zh": " 服务指引",
+ "services_hmn": "Kev pab",
+ "services_ko": " 제공 서비스",
+ "services_es": "Servicios ",
+ "services_vi": "Dịch vụ ",
+ "committees_en": "Committees",
+ "committees_zh": "专科部门",
+ "committees_hmn": "Cov Pawg Pab Kev Noj Qab Nyob Zoo",
+ "committees_ko": "부서 안내",
+ "committees_es": "Comités",
+ "committees_vi": "Uỷ ban của phòng khám",
+ "get_involved_en": "Get Involved",
+ "get_involved_zh": "加入我们",
+ "get_involved_hmn": "Koom tes nrog peb",
+ "get_involved_ko": "참여 방법",
+ "get_involved_es": "Involucrarse ",
+ "get_involved_vi": "Tham gia ",
+ "clinic_name_en": "Paul Hom Asian Clinic",
+ "clinic_name_zh": "亚洲诊所",
+ "clinic_name_hmn": "Tsev Kho Mob Paul Hom Asian Clinic",
+ "clinic_name_ko": "폴 홈 아시안 클리닉",
+ "clinic_name_es": "Clínica Asiática Paul Hom",
+ "clinic_name_vi": "Phòng khám Paul Hom",
+ "clinic_description_en": "A Student-Run Clinic at UC Davis",
+ "clinic_description_zh": "A Student-Run Clinic at UC Davis",
+ "clinic_description_hmn": "A Student-Run Clinic at UC Davis",
+ "clinic_description_ko": "A Student-Run Clinic at UC Davis",
+ "clinic_description_es": "A Student-Run Clinic at UC Davis",
+ "clinic_description_vi": "A Student-Run Clinic at UC Davis",
+ "contact_us_en": "Contact Us",
+ "contact_us_zh": "联系我们",
+ "contact_us_hmn": "Hu Peb",
+ "contact_us_ko": "문의하기",
+ "contact_us_es": "Para contactarnos",
+ "contact_us_vi": " Liên lạc phòng khám",
+ "thank_you_sponsors_text_en": "Thank you to our sponsors for their generous support!",
+ "thank_you_sponsors_text_zh": "感谢赞助者们的慷慨支持",
+ "thank_you_sponsors_text_hmn": "Ua tsaug rau cov tijneeg pab txhawb nqa dav",
+ "thank_you_sponsors_text_ko": "후원자 여러분의 따뜻한 성원에 진심으로 감사드립니다. ",
+ "thank_you_sponsors_text_es": "Gracias a nuestros patrocinadores por su generoso apoyo ",
+ "thank_you_sponsors_text_vi": "Cảm ơn các nhà tài trợ vì sự hỗ trợ hào phóng của bạn ",
+ "phone_number": "(916) 736-3966",
+ "address_en": "6341 Folsom Blvd Sacramento, CA 95819",
+ "address_zh": "6341 福尔瑟姆大道 萨克拉门托, 加州 95819",
+ "address_hmn": "6341 Folsom Blvd Sacramento, CA 95819",
+ "address_ko": "6341 Folsom Blvd Sacramento, CA 95819",
+ "address_es": "6341 Folsom Blvd Sacramento, CA 95819",
+ "address_vi": "6341 Folsom Blvd Sacramento, CA 95819",
+ "page_not_found_en": "Error 404: Page not found",
+ "page_not_found_zh": "错误 404: 找不到网页",
+ "page_not_found_hmn": "Error 404: Page not found",
+ "page_not_found_ko": "오류: 페이지를 찾을 수 없습니다",
+ "page_not_found_es": "Error 404: Page not found",
+ "page_not_found_vi": "Lỗi 404: Trang không tồn tại",
+ "back_to_home_en": "Back to Home",
+ "back_to_home_zh": "回主页",
+ "back_to_home_hmn": "Back to Home",
+ "back_to_home_ko": "홈을 돌아가기",
+ "back_to_home_es": "Back to home",
+ "back_to_home_vi": "Quay lại trang chủ",
+ "_last_modified": "2024-11-12T10:14:04.341Z",
+ "_created_at": "2024-11-12T08:37:59.277Z"
+}
\ No newline at end of file
diff --git a/src/messages/get-involved.json b/src/messages/get-involved.json
new file mode 100644
index 0000000..baa9375
--- /dev/null
+++ b/src/messages/get-involved.json
@@ -0,0 +1,98 @@
+{
+ "_id": "67331656dc67a045cf0eca7e",
+ "_name": "staging",
+ "_published": true,
+ "details_text_en": "Details",
+ "details_text_zh": "详情",
+ "details_text_hmn": "Kawm Txuas Ntxiv",
+ "details_text_ko": "세부 사항",
+ "details_text_es": "Detalles",
+ "details_text_vi": "Chi Tiết",
+ "close_text_en": "Close",
+ "close_text_zh": "关闭",
+ "close_text_hmn": "Kaw",
+ "close_text_ko": "닫기",
+ "close_text_es": "Cerrar",
+ "close_text_vi": "Đóng",
+ "sign_up_text_en": "Sign Up",
+ "sign_up_text_zh": "注册报名",
+ "sign_up_text_hmn": "Sau Npe",
+ "sign_up_text_ko": "가입하기",
+ "sign_up_text_es": "Registrarse",
+ "sign_up_text_vi": "Đăng Ký",
+ "card_1_title_en": "Physicians & Residents",
+ "card_1_title_zh": "医生和住院医师",
+ "card_1_title_hmn": "Kws Kho Mob Thiab Tub Ntxhais Kawm Tshuaj",
+ "card_1_title_ko": "의사 및 레지던트",
+ "card_1_title_es": "Médicos y Residentes",
+ "card_1_title_vi": "Bác Sĩ và Bác Sĩ Nội Trú",
+ "card_1_signup_link": "https://www.paulhomasianclinic.com",
+ "card_1_details_en": "Physicians and residents are a valuable component to our clinic because they serve as teachers and mentors to health professional students and undergrad patient advocates. They help facilitate the clinical process, such as guiding medical students in making a correct diagnosis, writing prescriptions for our patients, and providing medical services and advice. Any physician and resident, primary care and specialty alike, is welcomed and appreciated in our clinic! If you are interested in volunteering as a preceptor please contact our physician scheduling team at: phac.physician.scheduler@gmail.com",
+ "card_1_details_zh": "医生和实习医生是我们诊所重要的组成部分,因为他们是医学生和本科志愿者的导师。他们帮助促进看诊过程,例如指导医学生做出正确的诊断、为患者开处方,以及提供医疗服务和建议。我们衷心感谢所有医生和实习医生的协助!如果您有兴趣在亚洲诊所担任志愿导师,请联络我们的医生团队:phac.physical.scheduler@gmail.com ",
+ "card_1_details_hmn": "Cov kws kho mob thiab cov kws tab tom kawm kho mob tseem ceeb rau peb lub tsev kho mob vim tias lawv ua cov kws qhia ntawv thiab cov kws cob qhia rau cov tub ntxhais paub txog tshuaj thiab cov tub ntxhais kawm ntawv thiab xav kawm txog tshuaj. Lawv pab txhawb cov txheej txheem kho mob, xws li qhia cov tub ntxhais kawm kho mob kuaj mob kom raug, sau ntawv tshuaj rau peb cov neeg mob, thiab muab kev pab kho mob thiab lus qhia. Txhua tus kws kho mob thiab kws tab tom kawm kho mob, cov saib xyuas kev noj qab noj zoo thiab tshwj xeeb zoo ib yam, zoo siab txais tos thiab txaus siab rau peb lub tsev kho mob! Yog tias koj xav ua haujlwm pub dawb ua tus kws kho mob thov hu rau peb pab pawg teem sijhawm rau kws kho mob ntawm: phac.physician.scheduler@gmail.com ",
+ "card_1_details_ko": "의사와 레지던트의대생, 건강 전문 학생 및 학부생들에게 교사와 멘토로서 중요한 역할을 합니다. 그들은 올바른 진단을 내리는 과정에서 의대생을 지도하고, 환자를 위한 처방을 작성하고, 의료 서비스와 조언을 제공하는 등 임상 과정을 원활히 진행하는 데 도움을 줍니다. 모든 의사와 레지던트, 기본 진료 및 전문의 모두 우리 클리닉에서 환영받고 감사히 여깁니다! 프리셉터 (의사)로 자원봉사를 원하시는 경우, 저희 의사 일정 팀에 연락해 주세요: phac.physician.scheduler@gmail.com ",
+ "card_1_details_es": "Los médicos y residentes son componentes valiosos en nuestra clínica porque actúan como maestros y mentores para los estudiantes de salud y defensores de pacientes de pregrado. Ayudan a facilitar el proceso clínico, como guiar a los estudiantes de medicina en hacer el diagnóstico correcto, escribir recetas para nuestros pacientes, y ofrecer servicios y consejos médicos. ¡Todos los médicos y residentes, tanto de atención primaria como de especialidad, son bienvenidos y apreciados en nuestra clínica! Si está interesado en ser voluntario como médico, por favor contacte a nuestro equipo de programación de médicos en: phac.physician.scheduler@gmail.com",
+ "card_1_details_vi": "Các bác sĩ và bác sĩ nội trú là một thành phần có giá trị đối với phòng khám của chúng tôi vì họ đóng vai trò là giáo viên và cố vấn cho các sinh viên chuyên ngành y tế và những bạn tình nguyện viên ủng hộ bệnh nhân. Chúng giúp tạo điều kiện thuận lợi cho quá trình lâm sàng, chẳng hạn như hướng dẫn sinh viên y khoa chẩn đoán chính xác, viết đơn thuốc cho bệnh nhân cũng như cung cấp các dịch vụ và lời khuyên y tế. Bất kỳ bác sĩ và bác sĩ nội trú nào, chăm sóc y tế tổng quát cũng như chuyên khoa, đều được chào đón và đánh giá cao tại phòng khám của chúng tôi! Nếu bạn quan tâm đến việc tình nguyện làm giảng viên, vui lòng liên hệ với nhóm lập kế hoạch bác sĩ của chúng tôi tại: phac.physician.scheduler@gmail.com",
+ "card_2_title_en": "Undergraduate Patient Advocates ",
+ "card_2_title_zh": "本科志愿者",
+ "card_2_title_hmn": "Tub Ntxhais Kawm Ntawv Thiab Xav Kawm Txog Tshuaj",
+ "card_2_title_ko": "학부생 인턴/봉사자j",
+ "card_2_title_es": "Asistentes de pacientes estudiantes universitarios",
+ "card_2_title_vi": "Sinh viên đại học: những bạn tình nguyện viên ủng hộ bệnh nhân",
+ "card_2_signup_link": "https://www.paulhomasianclinic.com",
+ "card_2_details_en": "The term Patient Advocate aptly describes an undergraduate volunteer at the Paul Hom Asian Clinic. Patient Advocates mainly act as interpreters for predominantly Cantonese, Mandarin, and Vietnamese patients who visit the clinic. They also have a variety of responsibilities such as in taking vital signs, assisting in the dispensing of medications, and assisting medical students with patient care. They continue to play an important role as patient educators and interpreters for our clinic. In addition, they have the opportunity to learn more about providing social services to the underserved. Our Fall 2024 undergraduate application is currently open!! If you have any additional questions, please contact phacugco-d@ucdavis.edu",
+ "card_2_details_zh": "「本科志愿者」是亚洲诊所的大学生志工。他们主要为就诊的患者提供翻译服务,患者以说粤语、普通话和越南语为主。本科志愿者也承担各种职责,例如测量生命征象、协助配药和协助医学生照顾病人,所以他们在亚洲诊所发挥很重要的作用。此外,他们也有机会更了解如何为照护不足的群体提供服务。我们现已开放 2023 年秋季本科生的申请!如果您有任何其他问题,请联络 phacugco-d@ucdavis.edu ",
+ "card_2_details_hmn": "Qhov lus Patient Advocate los sis tus neeg txhawb cov neeg mob yog los lus uas piav txog ib tug tub ntxhais kawm ntawv uas pab tim lub tsev kho mob Paul Hom Asian Clinic. Ib tus neeg ua txhawb cov neeg mob feem ntau pab txhais lus rau lus Cantonese, lus Suav, thiab lus Nyab laj rau cov neeg mob ua tuaj xyuas lub tsev kho mob. Lawv kuj muaj lwm yam haujlwm xws li kuaj cov cim tseem ceeb txog lub cev, pab muab tshuaj, thiab pab cov tub ntxhais kawm tshuaj kho mob nrog saib xyuas cov neeg mob. Lawv lub luag tseem ceeb rau cov neeg mob vim lawv yog cov qhia txog ntau yam mob thiab tshuaj thiab txhais lub rau cov neeg mob nyob hau peb lub tsev kho mob. Txuas ntxiv mus, lawv muaj lub sijhawm los kawm txog txoj kev pab xoom qhob rau cov neeg tsis muaj. Peb cov tub ntxhais kawm ntawv rau lub caij nplooj ntoo zeeg xyoo 2023 qhib tam sim no!! Yog koj muaj lus noog txuas ntxiv, thov tiv rau phacugco-d@ucdavis.edu ",
+ "card_2_details_ko": "‘환자 옹호자’라는 용어는 폴 홈 아시아 클리닉의 학부 자원봉사자를 적절히 설명합니다. 환자 옹호자는 주로 클리닉을 방문하는 광동어, 중국어, 베트남어를 사용하는 환자들을 위한 통역사 역할을 합니다. 그들은 또한 생명 징후 측정, 약물 배급 보조, 환자 치료 보조와 같은 다양한 업무를 수행합니다. 이들은 계속해서 우리 클리닉의 환자 교육자 및 통역사로서 중요한 역할을 합니다. 또한, 그들은 소외된 사람들을 위한 사회 서비스를 제공하는 것에 대해 더 많이 배울 기회를 갖게 됩니다. 현재 2024년 가을 학부생 지원서가 열려 있습니다!! 추가 질문이 있으시면 phacugco-d@ucdavis.edu로 문의해 주세요.",
+ "card_2_details_es": "El término Defensor de Pacientes describe a un voluntario de pregrado en la Clínica de Paul Hom. Los Defensores de Pacientes actúan principalmente como intérpretes para pacientes, predominantemente en cantonés, mandarín y vietnamita, que visitan la clínica. También tienen una variedad de responsabilidades como tomar signos vitales, ayudar en la dispensación demedicamentos, y asistir a los estudiantes médicos en el cuidado de los pacientes. Continúan cumpliendo un papel importante como educadores de pacientes e intérpretes para nuestra clínica. Además, tienen la oportunidad de aprender más sobre proveer servicios sociales a las poblaciones desatendidas. ¡¡Nuestra aplicación de pregrado para el Otoño 2024 está abierta actualmente!! Si tiene preguntas adicionales, por favor contacte a phacugco-d@ucdavis.edu",
+ "card_2_details_vi": "Thuật ngữ tình nguyện viên ủng hộ bệnh nhân mô tả chính xác một tình nguyện viên/sinh viên đại học tại Phòng khám Châu Á Paul Hom. Những bạn tình nguyện viên ủng hộ bệnh nhân chủ yếu đóng vai trò là thông dịch viên cho các bệnh nhân chủ yếu là người Quảng Đông, Quan Thoại và Việt Nam đến khám tại phòng khám. Họ cũng có nhiều trách nhiệm khác nhau như lấy chỉ số sức khỏe, hỗ trợ cấp phát thuốc và hỗ trợ sinh viên y khoa chăm sóc bệnh nhân. Họ tiếp tục đóng vai trò quan trọng với tư cách là người hướng dẫn bệnh nhân và thông dịch viên cho phòng khám của chúng tôi. Ngoài ra, họ có cơ hội tìm hiểu thêm về việc cung cấp các dịch vụ xã hội cho những người chưa được phục vụ đầy đủ. Đơn đăng ký đại học Mùa thu 2024 của chúng tôi hiện đang mở!! Nếu bạn có thắc mắc gì thêm, vui lòng liên hệ phacugco-d@ucdavis.edu ",
+ "card_3_title_en": "Health Professional Students ",
+ "card_3_title_zh": "医学生",
+ "card_3_title_hmn": "Tub Ntxhais Paub Txog Tshuaj",
+ "card_3_title_ko": "보건/의료 전문 학생 ",
+ "card_3_title_es": "Estudiantes profesionales de la salud ",
+ "card_3_title_vi": "Sinh Viên Y ",
+ "card_3_signup_link": "https://www.paulhomasianclinic.com",
+ "card_3_details_en": "Health professional students are exposed to a variety of clinical responsibilities, such as interviewing patients, conducting physical exams, and performing laboratory procedures (blood draw, pap smears, vaccination, etc.). In addition, students also learn more about working with the underserved Asian population. To volunteer at our clinic, please sign up on the Inter-clinic Google Doc. Dress code: business-casual with white coat and badge",
+ "card_3_details_zh": "医学生承担各种临床职责,例如询问患者的病史、对患者进行身体检查和检测操作(抽血、子宫颈抹片检查、疫苗接种等)。此外,医学生也有机会了解如何为照护不足的群体提供服务。如果您有兴趣在我们的诊所担任志愿者,请在 Inter-clinic Google Doc 上注册。服装要求:商务休闲装、白袍和证章",
+ "card_3_details_hmn": "Tub Ntxhais Paub Txog Tshuaj raug cuam tshuam rau ntau lub luag haujlwm hauv chaw kho mob, xws li xam phaj cov neeg mob, kuaj lub cev, thiab ua cov txheej txheem kuaj ntshav (xws ntshav, pap smears, txhaj tshuaj tiv thaiv, thiab lwm yam). Tsis tas li ntawd, cov tub ntxhais kawm kuj kawm paub ntau ntxiv txog kev ua haujlwm nrog cov neeg Asia tsis muaj kev pabcuam. Txhawm rau ua haujlwm pub dawb ntawm peb lub tsev kho mob, thov sau npe rau ntawm Inter-clinic Google Doc. Hnav khaub ncaws: ua lag luam-xws li nrog lub tsho dawb thiab daim paib. ",
+ "card_3_details_ko": "건강 전문 학생들은 환자 인터뷰, 신체 검사 및 실험실 절차(혈액 채취, 자궁경부 세포진 검사, 예방 접종 등)를 수행하는 다양한 임상 책임을 경험하게 됩니다. 또한, 학생들은 소외된 아시아 인구와 협력하는 것에 대해 더 많이 배우게 됩니다. 우리 클리닉에서 자원봉사를 원하시면 Inter-clinic Google 문서에 등록해 주세요. 복장 규정: 비즈니스 캐주얼, 흰 가운 및 배지를 착용하십시오.",
+ "card_3_details_es": "Los estudiantes de salud están expuestos a una variedad de responsabilidades clínicas, como entrevistar a los pacientes, hacer exámenes físicos, y realizar procedimientos de laboratorio (pruebas de sangre, pruebas de Papanicolaou, vacunación, etc.). Además, los estudiantes aprenden más sobre cómo trabajar con la población asiática desatendida. Para ser voluntario en nuestra clínica, por favor inscríbase en el Google Doc inter-clínico. Código de vestimenta: casual de negocios con bata blanca y gafete. ",
+ "card_3_details_vi": "Sinh viên chuyên ngành y tế phải đối mặt với nhiều trách nhiệm lâm sàng khác nhau, chẳng hạn như phỏng vấn bệnh nhân, tiến hành kiểm tra thể chất và thực hiện các thủ tục trong phòng thí nghiệm (lấy máu, lấy tế bào cổ tử cung, tiêm chủng, v.v.). Ngoài ra, sinh viên còn tìm hiểu thêm về cách làm việc với nhóm dân số người Á Châu chưa được phục vụ đầy đủ. Để tình nguyện tại phòng khám của chúng tôi, vui lòng đăng ký trên Google Doc của phòng khám đa khoa. Quy định về trang phục: trang phục công sở với áo khoác và huy hiệu màu trắng",
+ "donate_today_text_en": "Donate Today!",
+ "donate_today_text_zh": "捐赠我们!",
+ "donate_today_text_hmn": "Peb Txais Nyiaj Pub Dawb!",
+ "donate_today_text_ko": "지금 후원해 주세요!",
+ "donate_today_text_es": "¡Dona hoy!",
+ "donate_today_text_vi": "Hãy Quyên Góp Hôm Nay",
+ "donation_instructions_en": "Paul Hom Asian Clinic is a 501(c)(3) organization. If you would like to support our clinic, donations can be mailed to:",
+ "donation_instructions_zh": "亚洲诊所是一所 501C(3) 的非营利组织。如果您想支持我们的,捐款可以邮寄至:",
+ "donation_instructions_hmn": "Peb Txais Nyiaj Pub Dawb! Tsev Kho Mob Paul Hom Asian Clinic yog ib lub 501(c)(3) koom haum. Yog hais tias koj xav pab peb, koj xa tau nyiaj mus rau:",
+ "donation_instructions_ko": "폴 홈 아시안 클리닉은 501(c)(3) 비영리 단체입니다. 클리닉을 후원해주실분들은 후원금을 여기로 보내주세요:",
+ "donation_instructions_es": "La Clínica Asiática Paul Hom es una organización 501(c)(3). Si desea apoyar nuestra clínica, las donaciones pueden enviarse por correo a: ",
+ "donation_instructions_vi": "Phòng Khám Paul Hom là một tổ chức 501(c)(3). Nếu như muốn hỗ trợ phòng khám của chúng tôi thì những quyên góp có thể được gửi đến: ",
+ "thank_you_text_en": "We thank you for your generosity! ",
+ "thank_you_text_zh": "感谢您的慷慨支持!",
+ "thank_you_text_hmn": "Ua tsaug rau koj txoj kev zoo!",
+ "thank_you_text_ko": "여러분의 따뜻한 후원에 감사드립니다!",
+ "thank_you_text_es": "¡Le agradecemos por su generosidad!",
+ "thank_you_text_vi": "Chúng tôi cảm ơn vì sự hào phóng của bạn!",
+ "_last_modified": "2024-11-12T13:28:12.953Z",
+ "_created_at": "2024-11-12T08:48:22.017Z",
+ "page_media": {
+ "cards_section": [
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406333/peeejtvethr8ynfiisaq.png",
+ "alt": "physiciansAndResidents.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406331/ivzodg3katzz7j8qivdl.png",
+ "alt": "undergrad.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406342/dvsy3rhbnyd1hgk0kczn.png",
+ "alt": "clinics.png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/src/messages/hmn.json b/src/messages/hmn.json
deleted file mode 100644
index 7ca75c1..0000000
--- a/src/messages/hmn.json
+++ /dev/null
@@ -1,285 +0,0 @@
-{
- "Index": {
- "mission": {
- "our_mission_text": "Our Mission",
- "text": "Paul Hom Asian Clinic is a 501C(3) non-profit organization committed to serving underserved and uninsured Asian populations in a linguistically and culturally sensitive manner.\n\nAt Paul Hom we provide free primary care to the medically underserved, quality community medicine for our local community and interpretation services for the underserved Asian community.\n\nOur success is a result of the collaborative effort of all our health professional and undergraduate staff working to provide such important services."
- },
- "visit_us": {
- "visit_us_text": "Visit Us!",
- "contact_instruction": "Leave us a voicemail with your name and phone number, and we'll call you back to book an appointment.",
- "phone": "(916) 736-3966",
- "message": "Message",
- "address": "6341 Folsom Blvd Sacramento, CA 95819"
- },
- "closure_dates_text": "Closure Dates",
- "upcoming_events_text": "Upcoming Events",
- "image_gallery_overlay_text": {
- "title": "A Passion To Serve",
- "description": "Quality clinical services for our local community"
- }
- },
- "About": {
- "page_title_and_subtitle": {
- "title": "The Legacy of Paul Hom",
- "description": "We are the oldest Asian clinic in the United States."
- },
- "commitment_statement": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients.",
- "sister_clinics": {
- "clinic_category_title": "Our Sister Clinics",
- "clinic_count": "2",
- "clinic1": {
- "name": "VN Cares",
- "website_link": "https://www.vncares.org/"
- },
- "clinic2": {
- "name": "HLUB",
- "website_link": "https://hlubclinic.wordpress.com/"
- }
- },
- "ucd_clinics": {
- "clinic_category_title": "UC Davis Student-Run Clinics",
- "clinic_count": "6",
- "clinic1": {
- "name": "Bayanihan",
- "website_link": "https://www.bayanihanclinic.com/"
- },
- "clinic2": {
- "name": "Clinica Tepati",
- "website_link": "https://clinicatepati.com/"
- },
- "clinic3": {
- "name": "Imani clinic",
- "website_link": "https://www.imaniclinic.org/"
- },
- "clinic4": {
- "name": "Joan Viteri Memorial Clinic",
- "website_link": "https://www.jvmclinic.com/"
- },
- "clinic5": {
- "name": "Shifa Clinic",
- "website_link": "https://shifaclinic.org/"
- },
- "clinic6": {
- "name": "Willow Clinic",
- "website_link": "https://www.willowclinic.org/"
- }
- },
- "history_cards": {
- "card_count": "5",
- "card1": {
- "title": "1971 Our Beginning",
- "description": "In 1971, a group of UC Davis medical students led by Paul Hom held meetings with a group of activist undergraduate students from the California State University of Sacramento to discuss improving health care for elderly Asians and new immigrant families who were struggling to obtain adequate health care due to socioeconomic and language barriers. They decided to start a free clinic to target this problem.",
- "image_description": "portrait of the founder, Paul Hom"
- },
- "card2": {
- "title": "Creating a Team",
- "description": "Paul Hom approached Dr. Lindy Kumagai, one of the few Asian medical faculty members at UC Davis School of Medicine, and asked if he would be the medical director of the clinic. Dr. Lindy Kumagai was an advocate for the Civil Rights Movement and underserved Asian communities. He accepted the position and worked with Paul Hom and UC Davis medical students for the next 30 years.",
- "image_description": "portrait of Dr.Lindy Kumagai"
- },
- "card3": {
- "title": "Early Operations",
- "description": "The ‘Asian Clinic’, as it was called before being renamed to the Paul Hom Asian Clinic, operated out of the back of a bookstore providing primary care services to about 9-10 patients every Saturday. After some time, the community closed the bookstore and the clinic moved to the Sacramento Projects in New Helvecia (low income housing). The clinic later moved to its current location at the Safe Credit Union on Folsom Boulevard.",
- "image_description": "Picture of former clinic"
- },
- "card4": {
- "title": "Continuing the Legacy",
- "description": "After serving for 30 years, Dr. Lindy Kumagai passed on his position as medical director to Dr. Ronald Guy Jan. Dr. Jan had been volunteering for the clinic since 1980. He had an undying dedication and passion for serving the underserved. In the midst of starting his own practice, Dr. Jan would do his rounds between seven different hospitals and then come to the clinic to take on any patient that needed his help. Dr. Jan served for about 18-20 years before passing his position to the current medical director Dr. Christian Bohringer.",
- "image_description": "The Entire Medical Team in a group picture, smiling"
- },
- "card5": {
- "title": "Today",
- "description": "The existence of the Paul Hom Asian Clinic has proved beneficial not only to the patients, but also to the undergraduate students, medical students, and physicians who volunteer their time and efforts. The legacy of Dr. Paul Hom continues to thrive and is the oldest Asian clinic in all of America.",
- "image_description": "Current Student-Run Clinic Team in a group picture, smiling"
- }
- }
- },
- "GetInvolved": {
- "page_title": "Get Involved",
- "card1": {
- "title_short": "Physicians & Residents",
- "title_long": "Physicians and Residents",
- "sign_up_link": "/",
- "content_1": "Physicians and residents are a valuable component to our clinic because they serve as teachers and mentors to health professional students and undergrad patient advocates. They help facilitate the clinical process, such as guiding medical students in making a correct diagnosis, writing prescriptions for our patients, and providing medical services and advice.",
- "content_2": "Any physician and resident, primary care and specialty alike, is welcomed and appreciated in our clinic! If you are interested in volunteering as a preceptor please contact our physician scheduling team at: \n phac.physician.scheduler@gmail.com"
- },
- "card2": {
- "title_short": "Undergrad. Patient Advocates",
- "title_long": "Undergraduate Patient Advocates",
- "sign_up_link": "/",
- "content_1": "The term Patient Advocate aptly describes an undergraduate volunteer at the Paul Hom Asian Clinic. Patient Advocates mainly act as interpreters for predominantly Cantonese, Mandarin, and Vietnamese patients who visit the clinic. They also have a variety of responsibilities such as in taking vital signs, assisting in the dispensing of medications, and assisting medical students with patient care.",
- "content_2": "They continue to play an important role as patient educators and interpreters for our clinic. In addition, they have the opportunity to learn more about providing social services to the underserved. Our Fall 2023 undergraduate application is currently open!! If you have any additional questions, please contact phacugco-d@ucdavis.edu"
- },
- "card3": {
- "title_short": "Health Professional Students",
- "title_long": "Health Professional Students",
- "sign_up_link": "/",
- "content_1": "Health professional students are exposed to a variety of clinical responsibilities, such as interviewing patients, conducting physical exams, and performing laboratory procedures (blood draw, pap smears, vaccination, etc.). In addition, students also learn more about working with the underserved Asian population. To volunteer at our clinic, please sign up on the Inter-clinic Google Doc.",
- "content_2": "Dress code: business-casual with white coat and badge"
- },
- "details_text": "Details",
- "sign_up_text": "Sign Up",
- "donate_today_text": "Donate Today!",
- "donation_instruction": "Paul Hom Asian Clinic is a 501(c)(3) organization. If you would like to support our clinic, donations can be mailed to:",
- "address": "Paul Hom Asian Clinic\n6341 Folsom Blvd\nSacramento, CA 95819",
- "thank_you_text": "We thank you for your generoristy!"
- },
- "Services": {
- "page_title": "Our Services",
- "regular_service": {
- "service1": {
- "title": "Primary Care Services",
- "description": "Every Saturday"
- },
- "service2": {
- "title": "Cancer Screenings",
- "description": "First Sunday Monthly"
- }
- },
- "services_slides":{
- "slide_count": "4",
- "slide1": {
- "title": "Specialty Clinics",
- "count_of_bullet_points": "4",
- "list": {
- "item1": "Musculoskeletal Clinic (MSK)",
- "item2": "Dermatology",
- "item3": "Cardiopulmonary Clinic",
- "item4": "Liver Clinic"
- }
- },
- "slide2": {
- "title": "Hepatitis",
- "count_of_bullet_points": "5",
- "list": {
- "item1": "Liver cancer is often tied to Hepatitis B",
- "item2": "Transmission: blood, sex, mother-to-child; late diagnosis common",
- "item3": "Asians more vulnerable, higher infection rates, mortality",
- "item4": "Screening, vaccination, tratments available",
- "item5": "Free vaccines"
- }
- },
- "slide3": {
- "title": "Health Education & Preventative Measures",
- "count_of_bullet_points": "3",
- "list": {
- "item1": "Hypertension Workshops",
- "item2": "Nutrition Counseling",
- "item3": "Health Fair"
- }
- },
- "slide4": {
- "title": "Vaccines",
- "count_of_bullet_points": "3",
- "list": {
- "item1": "Hepatitis",
- "item2": "Annual flu-shots",
- "item3": "Health Fair"
- }
- }
- },
- "referrals_title_text": "Referrals",
- "referrals": {
- "item1": "Surgery with SPIRIT program",
- "item2": "UCDMC",
- "item3": "Primary Care Clinic"
- },
- "translators_title_text": "Translators",
- "translators": {
- "item1": "Cantonese",
- "item2": "Mandaring",
- "item3": "Korean",
- "item4": "Taishanese",
- "item5": "Vietnamese",
- "item6": "Hmong"
- }
- },
- "Committees": {
- "title_text": "Meet Our Committees!",
- "back_to_committees": "Back to committees",
- "count_of_committees": "9",
- "committee_names": {
- "item1": "cardiopulmonary",
- "item2": "covered-california",
- "item3": "patient-assistance-program",
- "item4": "dermatology",
- "item5": "diabetes",
- "item6": "hepatitis",
- "item7": "ophthalmology",
- "item8": "womens-health",
- "item9": "neurology"
- },
- "cards": {
- "cardiopulmonary": {
- "name": "Cardiopulmonary",
- "image": "/images/committees/cardiopulmonary.png",
- "path": "/committees/cardiopulmonary",
- "description": "The Cardiopulmonary Committee educates patients about cardiovascular, pulmonary, and heart-related diseases. We assist patients who are at risk or already addicted to nicotine by providing free cessation resources. The Cardiopulmonary Committee holds monthly specialty clinics that offer electrocardiogram (EKG) strips, ankle brachial index (ABI) tests, and spirometry tests. \n \n Next Cardiopulmonary Clinic: Sunday, November 20, 2022"
- },
- "covered-california": {
- "name": "Covered California",
- "image": "/images/committees/covered_california.png",
- "path": "/committees/covered-california",
- "description": "The Covered California Committee assists patients in signing up for affordable health insurance through Covered California, Medi-Cal and Medicare. All Covered California Co-Directors are certified enrollment counselors for Covered California and, therefore, are able to work with patients through the entirety of the insurance application. The Covered California Committee also provides assistance in SPIRIT referrals--where patients can potentially have their expensive surgeries paid for."
- },
- "dermatology": {
- "name": "Dermatology",
- "image": "/images/committees/dermatology.png",
- "path": "/committees/dermatology",
- "description": "The Dermatology committee is trained and educated to provide quality healthcare to patients experiencing simple to complex skin disorders. Some of the more common conditions that we screen for are eczema, psoriasis, pemphigus, rosacea, acne vulgaris, and all types of cancers. We provide free consultations for skin care and can even perform skin biopsies to rule out concerns for malignancies. Our team is dedicated to help you feel better about your own skin and how you wear it. We look forward to meeting you!\n \n Dermatology Clinics on Sunday, 9/25, 10/16, 12/11"
- },
- "diabetes": {
- "name": "Diabetes",
- "image": "/images/committees/diabetes.png",
- "path": "/committees/diabetes",
- "description": "The Diabetes Committee improves the health of patients by screening all patients for diabetes and conducting follow ups with prediabetic and diabetic patients. We also offer nutrition and diet counseling, show exercise demonstrations, and provide free glucometer kits and HgA1c blood tests. The committee holds annual patient education seminars and events to help patients feel equipped to manage their diabetes and overall health."
- },
- "patient-assistance-program": {
- "name": "Patient Assistance Program",
- "image": "/images/committees/patient_assistance_program.png",
- "path": "/committees/patient-assistance-program",
- "description": "The Patient Assistance Program (PAP) Committee enrolls low-income and uninsured/underinsured patients to receive brand-name medications at no cost from participating pharmaceutical companies. On average, we help patients save $130,000 a year on the medication cost. In addition, we have been leading various projects that provide patients free resources such as: accessories for injectable medications (syringes, needles, sharps containers, and needle clippers) and medication-related infographics. Recently, we have started collaborating with GoodRx to provide qualified patients monthly pre-paid debit cards for their chronic generic medications. Furthermore, the PAP Committee works closely with Dr. Jan and Dr. Pauly to monitor patients’ medication compliance, effectiveness, and safety, and to accommodate patients' other special needs on a case-by-case basis."
- },
- "hepatitis": {
- "name": "Hepatitis",
- "image": "/images/committees/hepatitis.png",
- "path": "/committees/hepatitis",
- "description": "Hepatitis is one of the leading causes of liver cancer, and the Asian population is at a significantly greater risk for having the disease. As a result, the Hepatitis Committee is devoted to identifying and treating this high-risk, underserved and uninsured Asian population in the Sacramento region. We currently provide free screening, vaccinations, and liver ultrasounds to patients. The Hepatitis Committee strives to educate our patients regarding Hepatitis B and encourage everyone to be screened and vaccinated."
- },
- "neurology": {
- "name": "Neurology",
- "image": "/images/committees/neurology.png",
- "path": "/committees/neurology",
- "description": "The Neurology Clinic assists patients with neurological issues, such as problems with memory, neuropathic pain (numb, tingling, or burning feet/hands), sleep, migraine, seizures, and any other issues related to the brain. We also offer dementia screening for patients who are older than 65 years of age and provide access to resources for patients, caretakers, and family members of individuals with memory loss issues."
- },
- "womens-health": {
- "name": "Women's Health",
- "image": "/images/committees/womens_health.png",
- "path": "/committees/womens-health",
- "description": "The Women’s Health Committee ensures patients have access to preventative cancer screenings available to them and hosts health events to educate patients about breast and cervical cancers--topics that are avoided in many Asian families. Some services this committee provides are: referrals to Planned Parenthood for mammograms; enrollment into the Every Woman Counts program for uninsured patients along with follow ups; and scheduling patients for OB/GYN clinics, PAP smears, and clinical breast exams (CBEs)."
- },
- "ophthalmology": {
- "name": "Ophthalmology",
- "image": "/images/committees/ophthalmology.png",
- "path": "/committees/ophthalmology",
- "description": "The Ophthalmology Committee monitors our patients’ history for eye conditions and provides patients with an assessment and follow-up care plan if needed. The committee conducts pupillary exams, intraocular pressure exams, visual acuity exams, slit lamp exams, and retinal exams during our clinic hours. Ophthalmology clinics are held quarterly on Sundays from 8:30am to 12pm. Depending on a patient’s insurance status and visual acuity, the Ophthalmology Committee can provide a VSP voucher which patients can use at a local optometrist’s office to obtain free-of-charge eyeglass frames and lenses and eye exams."
- }
- }
- },
- "Header": {
- "home": "HOME",
- "about_us": "ABOUT US",
- "services": "SERVICES",
- "committees": "COMMITEES",
- "get_involved": "GET INVOLVED",
- "clinic_name": "Paul Hom Asian Clinic",
- "clinic_description": "A Student-Run Clinic at UC Davis",
- "contact_us": "CONTACT US",
- "address": "6341 Folsom Blvd Sacramento, CA 95819",
- "thank_you_sponsors_text": "THANK YOU TO OUR SPONSORS FOR THEIR GENEROUS SUPPORT",
- "include_credit_line": "Designed & Developed with 🤍 by #include @ Davis"
- },
- "404page" : {
- "PageNotFound": "Error 404: Page not found",
- "BackToHome": "Back to home"
- }
-}
\ No newline at end of file
diff --git a/src/messages/home.json b/src/messages/home.json
new file mode 100644
index 0000000..24e490a
--- /dev/null
+++ b/src/messages/home.json
@@ -0,0 +1,118 @@
+{
+ "_id": "673318dadc67a045cf0eca7f",
+ "_name": "staging",
+ "_published": true,
+ "image_gallery_overlay_title_en": "A Passion To Serve ",
+ "image_gallery_overlay_title_zh": "「心」勤奉献",
+ "image_gallery_overlay_title_hmn": "Mob Siab Rau Kev Pab",
+ "image_gallery_overlay_title_ko": "정성을 다해 봉사합니다",
+ "image_gallery_overlay_title_es": "Pasión por servir",
+ "image_gallery_overlay_title_vi": "Niềm đam mê phục vụ",
+ "image_gallery_overlay_description_en": "Quality clinical services for our local community",
+ "image_gallery_overlay_description_zh": "为在地社区量身打造的高质量诊疗服务",
+ "image_gallery_overlay_description_hmn": "Kev kho mob zoo rau peb lub zej zog",
+ "image_gallery_overlay_description_ko": "지역사회를 위한 양질의 의료 서비스",
+ "image_gallery_overlay_description_es": "Servicios clínicos de calidad para nuestra comunidad local",
+ "image_gallery_overlay_description_vi": "Dịch vụ lâm sàng chất lượng cho cộng đồng địa phương của chúng tôi",
+ "our_mission_title_en": "Our Mission",
+ "our_mission_title_zh": "我们的宗旨",
+ "our_mission_title_hmn": "Peb Txoj Hauj Lwm",
+ "our_mission_title_ko": " 미션",
+ "our_mission_title_es": "Nuestra Misión",
+ "our_mission_title_vi": " Sứ mệnh của phòng khám",
+ "our_mission_text_en": "Paul Hom Asian Clinic is a 501C(3) non-profit organization committed to serving underserved and uninsured Asian populations in a linguistically and culturally sensitive manner. At Paul Hom we provide free primary care to the medically underserved, quality community medicine for our local community and interpretation services for the underserved Asian community. Our success is a result of the collaborative effort of all our health professional and undergraduate staff working to provide such important services.",
+ "our_mission_text_zh": "亚洲诊所是一所 501C(3) 的非营利组织,致力于以语言和文化友好的方式向未投保和照护不足的亚裔提供医疗服务。我们开设免费的初级门诊、高质量社区医学和翻译服务。我们的成就源自于我们的医疗专业人员以及本科生的共同努力。",
+ "our_mission_text_hmn": "Lub Tsev Kho Mob Paul Hom Asian Clinic yog ib lub 501C(3) koom haum pub dawb tau cog lus los pab txhais lus thiab pab raws li kab lis kev cai rau cov neeg Esxias tsis tau kev pab txaus thiab tsis muaj ntawv pov hwm rau kev kho mob. Ntawm Paul Hom, peb kho mob dawb rau cov tsis muaj kev pab kho mob txaus, peb muab cov tshuaj zoo hauv zej zoo rau peb lub zej zoj, thiab peb pab txhais lus rau cov neeg Esxias tsis tau kev pab txaus. Peb txoj kev vam meej yog los ntawm kev sib koom tes ntawm peb cov kws kho mob thiab tub kawm ua hauj lwm los muab cov kev pab cuam tseem ceeb.",
+ "our_mission_text_ko": "폴 홈 아시안 클리닉은 언어와 문화적 배경을 고려하여 의료 서비스가 부족한 아시아인 커뮤니티를 돕는 501C(3) 비영리 단체입니다. 저희는 의료 소외 계층을 위해 무료 기본 진료를 제공하고, 지역사회를 위한 질 높은 커뮤니티 의료 서비스 및 아시아인 대상 통역 서비스를 운영하고 있습니다. 저희가 이룬 성과는 필수적인 서비스를 제공하려는 모든 의료 전문가와 학부생 직원들의 헌신적인 협력 덕분입니다. ",
+ "our_mission_text_es": "La Clínica Asiática Paul Hom es una organización sin fines de lucro 501C(3) comprometida a atender poblaciones asiáticas marginadas y sin seguro de una manera lingüística y culturalmente sensible. En la clínica de Paul Hom brindamos atención primaria gratuita a las personas médicamente desatendidas, medicina comunitaria de calidad para nuestra comunidad local y servicios de interpretación para la comunidad asiática desatendida. Nuestro éxito es el resultado del esfuerzo colaborativo de todos nuestros profesionales de la salud y personal universitario que trabajan para brindar servicios tan importantes. ",
+ "our_mission_text_vi": "Phòng khám Châu Á Paul Hom là một tổ chức phi lợi nhuận 501C(3) cam kết phục vụ cộng đồng Châu Á chưa được phục vụ đầy đủ và không có bảo hiểm bằng cách hỗ trợ về mặt ngôn ngữ và văn hóa. Tại Paul Hom, chúng tôi cung cấp dịch vụ chăm sóc sức khoẻ miễn phí, cấp dưỡng về mặt y tế chất lượng cho cộng đồng địa phương của chúng tôi và cung cấp các dịch vụ phiên dịch cho cộng đồng người Châu Á. Thành công của chúng tôi là kết quả của nỗ lực hợp tác của tất cả các chuyên gia y tế và nhân viên đại học của chúng tôi làm việc để cung cấp các dịch vụ quan trọng như vậy. ",
+ "visit_us_text_en": "Visit Us",
+ "visit_us_text_zh": "Visit Us",
+ "visit_us_text_hmn": "Visit Us",
+ "visit_us_text_ko": "Visit Us",
+ "visit_us_text_es": "Visit Us",
+ "visit_us_text_vi": "Visit Us",
+ "contact_instruction_en": "Leave us a voicemail with your name and phone number, and we'll call you back to book an appointment.",
+ "contact_instruction_zh": "请在语音信箱中留下您的姓名和手机号,我们将会尽快致电与您登记预约。",
+ "contact_instruction_hmn": "Sau koj lub suab nrog koj lub npe thiab xov tooj es peb mam li hu rov qab rau koj mus teem caij.",
+ "contact_instruction_ko": "이름과 전화번호를 음성 메시지로 남겨주시면 예약을 도와드리기 위해 연락드리겠습니다.",
+ "contact_instruction_es": "Déjenos un mensaje de voz con su nombre y número de teléfono y le devolveremos la llamada para programar una cita.",
+ "contact_instruction_vi": "Hãy để lại cho chúng tôi một thư thoại có tên và số điện thoại của bạn, chúng tôi sẽ gọi lại cho bạn để đặt lịch hẹn.",
+ "message_en": "Message",
+ "message_zh": "信息",
+ "message_hmn": "Message",
+ "message_ko": "Message",
+ "message_es": "Message",
+ "message_vi": "Tin nhắn",
+ "closure_dates_text_en": "Closure Dates ",
+ "closure_dates_text_zh": "诊所公休日期 ",
+ "closure_dates_text_hmn": "Cov Hnub Kaw",
+ "closure_dates_text_ko": "휴무일 ",
+ "closure_dates_text_es": "Fechas de cierre ",
+ "closure_dates_text_vi": "Ngày đóng cửa",
+ "closure_dates": [
+ "Jan 1, 2025",
+ "Jan 15, 2025",
+ "Feb 19, 2025",
+ "May 27, 2025",
+ "Jun 19, 2025"
+ ],
+ "upcoming_events_text_en": "Upcoming Events ",
+ "upcoming_events_text_zh": "近期活动",
+ "upcoming_events_text_hmn": "Cov Xwm Txheej Tom Ntej No",
+ "upcoming_events_text_ko": "다가오는 행사",
+ "upcoming_events_text_es": "Próximos Eventos",
+ "upcoming_events_text_vi": "Sự kiện sắp tới",
+ "upcoming_events": [
+ {
+ "date": "Jan 1, 2025",
+ "name": "New Year"
+ },
+ {
+ "date": "Jan 15, 2025",
+ "name": "MLK Jr Day"
+ },
+ {
+ "date": "Feb 19, 2025",
+ "name": "Presidents Day"
+ },
+ {
+ "date": "May 27, 2025",
+ "name": "Memorial Day"
+ },
+ {
+ "date": "Jun 19, 2025",
+ "name": "Juneteenth"
+ }
+ ],
+ "_last_modified": "2024-11-12T13:28:59.570Z",
+ "_created_at": "2024-11-12T08:59:06.883Z",
+ "page_media": {
+ "gallery_section": [
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406307/gaf9m32tut7vpakoo26d.jpg",
+ "alt": "HomepageGalleryImage1.jpg"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406347/ulufqwnsusdpqxhuivzy.png",
+ "alt": "HomepageGalleryImage2.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406338/inr4015elcfzvvaoorti.png",
+ "alt": "HomepageGalleryImage3.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406330/wwjuwjg7jaiqybcf9ecs.png",
+ "alt": "HomepageGalleryImage4.png"
+ }
+ ],
+ "mission_section": {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406308/qwci6ulwggd2qwmeud7p.jpg",
+ "alt": "happy-doctors.png"
+ },
+ "upcoming_events_section": {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406307/vzeaxk2mtwk6ixtepzq6.jpg",
+ "alt": "events-img.png"
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/messages/ko.json b/src/messages/ko.json
deleted file mode 100644
index 7ca75c1..0000000
--- a/src/messages/ko.json
+++ /dev/null
@@ -1,285 +0,0 @@
-{
- "Index": {
- "mission": {
- "our_mission_text": "Our Mission",
- "text": "Paul Hom Asian Clinic is a 501C(3) non-profit organization committed to serving underserved and uninsured Asian populations in a linguistically and culturally sensitive manner.\n\nAt Paul Hom we provide free primary care to the medically underserved, quality community medicine for our local community and interpretation services for the underserved Asian community.\n\nOur success is a result of the collaborative effort of all our health professional and undergraduate staff working to provide such important services."
- },
- "visit_us": {
- "visit_us_text": "Visit Us!",
- "contact_instruction": "Leave us a voicemail with your name and phone number, and we'll call you back to book an appointment.",
- "phone": "(916) 736-3966",
- "message": "Message",
- "address": "6341 Folsom Blvd Sacramento, CA 95819"
- },
- "closure_dates_text": "Closure Dates",
- "upcoming_events_text": "Upcoming Events",
- "image_gallery_overlay_text": {
- "title": "A Passion To Serve",
- "description": "Quality clinical services for our local community"
- }
- },
- "About": {
- "page_title_and_subtitle": {
- "title": "The Legacy of Paul Hom",
- "description": "We are the oldest Asian clinic in the United States."
- },
- "commitment_statement": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients.",
- "sister_clinics": {
- "clinic_category_title": "Our Sister Clinics",
- "clinic_count": "2",
- "clinic1": {
- "name": "VN Cares",
- "website_link": "https://www.vncares.org/"
- },
- "clinic2": {
- "name": "HLUB",
- "website_link": "https://hlubclinic.wordpress.com/"
- }
- },
- "ucd_clinics": {
- "clinic_category_title": "UC Davis Student-Run Clinics",
- "clinic_count": "6",
- "clinic1": {
- "name": "Bayanihan",
- "website_link": "https://www.bayanihanclinic.com/"
- },
- "clinic2": {
- "name": "Clinica Tepati",
- "website_link": "https://clinicatepati.com/"
- },
- "clinic3": {
- "name": "Imani clinic",
- "website_link": "https://www.imaniclinic.org/"
- },
- "clinic4": {
- "name": "Joan Viteri Memorial Clinic",
- "website_link": "https://www.jvmclinic.com/"
- },
- "clinic5": {
- "name": "Shifa Clinic",
- "website_link": "https://shifaclinic.org/"
- },
- "clinic6": {
- "name": "Willow Clinic",
- "website_link": "https://www.willowclinic.org/"
- }
- },
- "history_cards": {
- "card_count": "5",
- "card1": {
- "title": "1971 Our Beginning",
- "description": "In 1971, a group of UC Davis medical students led by Paul Hom held meetings with a group of activist undergraduate students from the California State University of Sacramento to discuss improving health care for elderly Asians and new immigrant families who were struggling to obtain adequate health care due to socioeconomic and language barriers. They decided to start a free clinic to target this problem.",
- "image_description": "portrait of the founder, Paul Hom"
- },
- "card2": {
- "title": "Creating a Team",
- "description": "Paul Hom approached Dr. Lindy Kumagai, one of the few Asian medical faculty members at UC Davis School of Medicine, and asked if he would be the medical director of the clinic. Dr. Lindy Kumagai was an advocate for the Civil Rights Movement and underserved Asian communities. He accepted the position and worked with Paul Hom and UC Davis medical students for the next 30 years.",
- "image_description": "portrait of Dr.Lindy Kumagai"
- },
- "card3": {
- "title": "Early Operations",
- "description": "The ‘Asian Clinic’, as it was called before being renamed to the Paul Hom Asian Clinic, operated out of the back of a bookstore providing primary care services to about 9-10 patients every Saturday. After some time, the community closed the bookstore and the clinic moved to the Sacramento Projects in New Helvecia (low income housing). The clinic later moved to its current location at the Safe Credit Union on Folsom Boulevard.",
- "image_description": "Picture of former clinic"
- },
- "card4": {
- "title": "Continuing the Legacy",
- "description": "After serving for 30 years, Dr. Lindy Kumagai passed on his position as medical director to Dr. Ronald Guy Jan. Dr. Jan had been volunteering for the clinic since 1980. He had an undying dedication and passion for serving the underserved. In the midst of starting his own practice, Dr. Jan would do his rounds between seven different hospitals and then come to the clinic to take on any patient that needed his help. Dr. Jan served for about 18-20 years before passing his position to the current medical director Dr. Christian Bohringer.",
- "image_description": "The Entire Medical Team in a group picture, smiling"
- },
- "card5": {
- "title": "Today",
- "description": "The existence of the Paul Hom Asian Clinic has proved beneficial not only to the patients, but also to the undergraduate students, medical students, and physicians who volunteer their time and efforts. The legacy of Dr. Paul Hom continues to thrive and is the oldest Asian clinic in all of America.",
- "image_description": "Current Student-Run Clinic Team in a group picture, smiling"
- }
- }
- },
- "GetInvolved": {
- "page_title": "Get Involved",
- "card1": {
- "title_short": "Physicians & Residents",
- "title_long": "Physicians and Residents",
- "sign_up_link": "/",
- "content_1": "Physicians and residents are a valuable component to our clinic because they serve as teachers and mentors to health professional students and undergrad patient advocates. They help facilitate the clinical process, such as guiding medical students in making a correct diagnosis, writing prescriptions for our patients, and providing medical services and advice.",
- "content_2": "Any physician and resident, primary care and specialty alike, is welcomed and appreciated in our clinic! If you are interested in volunteering as a preceptor please contact our physician scheduling team at: \n phac.physician.scheduler@gmail.com"
- },
- "card2": {
- "title_short": "Undergrad. Patient Advocates",
- "title_long": "Undergraduate Patient Advocates",
- "sign_up_link": "/",
- "content_1": "The term Patient Advocate aptly describes an undergraduate volunteer at the Paul Hom Asian Clinic. Patient Advocates mainly act as interpreters for predominantly Cantonese, Mandarin, and Vietnamese patients who visit the clinic. They also have a variety of responsibilities such as in taking vital signs, assisting in the dispensing of medications, and assisting medical students with patient care.",
- "content_2": "They continue to play an important role as patient educators and interpreters for our clinic. In addition, they have the opportunity to learn more about providing social services to the underserved. Our Fall 2023 undergraduate application is currently open!! If you have any additional questions, please contact phacugco-d@ucdavis.edu"
- },
- "card3": {
- "title_short": "Health Professional Students",
- "title_long": "Health Professional Students",
- "sign_up_link": "/",
- "content_1": "Health professional students are exposed to a variety of clinical responsibilities, such as interviewing patients, conducting physical exams, and performing laboratory procedures (blood draw, pap smears, vaccination, etc.). In addition, students also learn more about working with the underserved Asian population. To volunteer at our clinic, please sign up on the Inter-clinic Google Doc.",
- "content_2": "Dress code: business-casual with white coat and badge"
- },
- "details_text": "Details",
- "sign_up_text": "Sign Up",
- "donate_today_text": "Donate Today!",
- "donation_instruction": "Paul Hom Asian Clinic is a 501(c)(3) organization. If you would like to support our clinic, donations can be mailed to:",
- "address": "Paul Hom Asian Clinic\n6341 Folsom Blvd\nSacramento, CA 95819",
- "thank_you_text": "We thank you for your generoristy!"
- },
- "Services": {
- "page_title": "Our Services",
- "regular_service": {
- "service1": {
- "title": "Primary Care Services",
- "description": "Every Saturday"
- },
- "service2": {
- "title": "Cancer Screenings",
- "description": "First Sunday Monthly"
- }
- },
- "services_slides":{
- "slide_count": "4",
- "slide1": {
- "title": "Specialty Clinics",
- "count_of_bullet_points": "4",
- "list": {
- "item1": "Musculoskeletal Clinic (MSK)",
- "item2": "Dermatology",
- "item3": "Cardiopulmonary Clinic",
- "item4": "Liver Clinic"
- }
- },
- "slide2": {
- "title": "Hepatitis",
- "count_of_bullet_points": "5",
- "list": {
- "item1": "Liver cancer is often tied to Hepatitis B",
- "item2": "Transmission: blood, sex, mother-to-child; late diagnosis common",
- "item3": "Asians more vulnerable, higher infection rates, mortality",
- "item4": "Screening, vaccination, tratments available",
- "item5": "Free vaccines"
- }
- },
- "slide3": {
- "title": "Health Education & Preventative Measures",
- "count_of_bullet_points": "3",
- "list": {
- "item1": "Hypertension Workshops",
- "item2": "Nutrition Counseling",
- "item3": "Health Fair"
- }
- },
- "slide4": {
- "title": "Vaccines",
- "count_of_bullet_points": "3",
- "list": {
- "item1": "Hepatitis",
- "item2": "Annual flu-shots",
- "item3": "Health Fair"
- }
- }
- },
- "referrals_title_text": "Referrals",
- "referrals": {
- "item1": "Surgery with SPIRIT program",
- "item2": "UCDMC",
- "item3": "Primary Care Clinic"
- },
- "translators_title_text": "Translators",
- "translators": {
- "item1": "Cantonese",
- "item2": "Mandaring",
- "item3": "Korean",
- "item4": "Taishanese",
- "item5": "Vietnamese",
- "item6": "Hmong"
- }
- },
- "Committees": {
- "title_text": "Meet Our Committees!",
- "back_to_committees": "Back to committees",
- "count_of_committees": "9",
- "committee_names": {
- "item1": "cardiopulmonary",
- "item2": "covered-california",
- "item3": "patient-assistance-program",
- "item4": "dermatology",
- "item5": "diabetes",
- "item6": "hepatitis",
- "item7": "ophthalmology",
- "item8": "womens-health",
- "item9": "neurology"
- },
- "cards": {
- "cardiopulmonary": {
- "name": "Cardiopulmonary",
- "image": "/images/committees/cardiopulmonary.png",
- "path": "/committees/cardiopulmonary",
- "description": "The Cardiopulmonary Committee educates patients about cardiovascular, pulmonary, and heart-related diseases. We assist patients who are at risk or already addicted to nicotine by providing free cessation resources. The Cardiopulmonary Committee holds monthly specialty clinics that offer electrocardiogram (EKG) strips, ankle brachial index (ABI) tests, and spirometry tests. \n \n Next Cardiopulmonary Clinic: Sunday, November 20, 2022"
- },
- "covered-california": {
- "name": "Covered California",
- "image": "/images/committees/covered_california.png",
- "path": "/committees/covered-california",
- "description": "The Covered California Committee assists patients in signing up for affordable health insurance through Covered California, Medi-Cal and Medicare. All Covered California Co-Directors are certified enrollment counselors for Covered California and, therefore, are able to work with patients through the entirety of the insurance application. The Covered California Committee also provides assistance in SPIRIT referrals--where patients can potentially have their expensive surgeries paid for."
- },
- "dermatology": {
- "name": "Dermatology",
- "image": "/images/committees/dermatology.png",
- "path": "/committees/dermatology",
- "description": "The Dermatology committee is trained and educated to provide quality healthcare to patients experiencing simple to complex skin disorders. Some of the more common conditions that we screen for are eczema, psoriasis, pemphigus, rosacea, acne vulgaris, and all types of cancers. We provide free consultations for skin care and can even perform skin biopsies to rule out concerns for malignancies. Our team is dedicated to help you feel better about your own skin and how you wear it. We look forward to meeting you!\n \n Dermatology Clinics on Sunday, 9/25, 10/16, 12/11"
- },
- "diabetes": {
- "name": "Diabetes",
- "image": "/images/committees/diabetes.png",
- "path": "/committees/diabetes",
- "description": "The Diabetes Committee improves the health of patients by screening all patients for diabetes and conducting follow ups with prediabetic and diabetic patients. We also offer nutrition and diet counseling, show exercise demonstrations, and provide free glucometer kits and HgA1c blood tests. The committee holds annual patient education seminars and events to help patients feel equipped to manage their diabetes and overall health."
- },
- "patient-assistance-program": {
- "name": "Patient Assistance Program",
- "image": "/images/committees/patient_assistance_program.png",
- "path": "/committees/patient-assistance-program",
- "description": "The Patient Assistance Program (PAP) Committee enrolls low-income and uninsured/underinsured patients to receive brand-name medications at no cost from participating pharmaceutical companies. On average, we help patients save $130,000 a year on the medication cost. In addition, we have been leading various projects that provide patients free resources such as: accessories for injectable medications (syringes, needles, sharps containers, and needle clippers) and medication-related infographics. Recently, we have started collaborating with GoodRx to provide qualified patients monthly pre-paid debit cards for their chronic generic medications. Furthermore, the PAP Committee works closely with Dr. Jan and Dr. Pauly to monitor patients’ medication compliance, effectiveness, and safety, and to accommodate patients' other special needs on a case-by-case basis."
- },
- "hepatitis": {
- "name": "Hepatitis",
- "image": "/images/committees/hepatitis.png",
- "path": "/committees/hepatitis",
- "description": "Hepatitis is one of the leading causes of liver cancer, and the Asian population is at a significantly greater risk for having the disease. As a result, the Hepatitis Committee is devoted to identifying and treating this high-risk, underserved and uninsured Asian population in the Sacramento region. We currently provide free screening, vaccinations, and liver ultrasounds to patients. The Hepatitis Committee strives to educate our patients regarding Hepatitis B and encourage everyone to be screened and vaccinated."
- },
- "neurology": {
- "name": "Neurology",
- "image": "/images/committees/neurology.png",
- "path": "/committees/neurology",
- "description": "The Neurology Clinic assists patients with neurological issues, such as problems with memory, neuropathic pain (numb, tingling, or burning feet/hands), sleep, migraine, seizures, and any other issues related to the brain. We also offer dementia screening for patients who are older than 65 years of age and provide access to resources for patients, caretakers, and family members of individuals with memory loss issues."
- },
- "womens-health": {
- "name": "Women's Health",
- "image": "/images/committees/womens_health.png",
- "path": "/committees/womens-health",
- "description": "The Women’s Health Committee ensures patients have access to preventative cancer screenings available to them and hosts health events to educate patients about breast and cervical cancers--topics that are avoided in many Asian families. Some services this committee provides are: referrals to Planned Parenthood for mammograms; enrollment into the Every Woman Counts program for uninsured patients along with follow ups; and scheduling patients for OB/GYN clinics, PAP smears, and clinical breast exams (CBEs)."
- },
- "ophthalmology": {
- "name": "Ophthalmology",
- "image": "/images/committees/ophthalmology.png",
- "path": "/committees/ophthalmology",
- "description": "The Ophthalmology Committee monitors our patients’ history for eye conditions and provides patients with an assessment and follow-up care plan if needed. The committee conducts pupillary exams, intraocular pressure exams, visual acuity exams, slit lamp exams, and retinal exams during our clinic hours. Ophthalmology clinics are held quarterly on Sundays from 8:30am to 12pm. Depending on a patient’s insurance status and visual acuity, the Ophthalmology Committee can provide a VSP voucher which patients can use at a local optometrist’s office to obtain free-of-charge eyeglass frames and lenses and eye exams."
- }
- }
- },
- "Header": {
- "home": "HOME",
- "about_us": "ABOUT US",
- "services": "SERVICES",
- "committees": "COMMITEES",
- "get_involved": "GET INVOLVED",
- "clinic_name": "Paul Hom Asian Clinic",
- "clinic_description": "A Student-Run Clinic at UC Davis",
- "contact_us": "CONTACT US",
- "address": "6341 Folsom Blvd Sacramento, CA 95819",
- "thank_you_sponsors_text": "THANK YOU TO OUR SPONSORS FOR THEIR GENEROUS SUPPORT",
- "include_credit_line": "Designed & Developed with 🤍 by #include @ Davis"
- },
- "404page" : {
- "PageNotFound": "Error 404: Page not found",
- "BackToHome": "Back to home"
- }
-}
\ No newline at end of file
diff --git a/src/messages/services.json b/src/messages/services.json
new file mode 100644
index 0000000..d83b6aa
--- /dev/null
+++ b/src/messages/services.json
@@ -0,0 +1,307 @@
+{
+ "_id": "6733279ddc67a045cf0eca80",
+ "_name": "staging",
+ "_published": true,
+ "regular_service_1_name_en": "Primary Care Services",
+ "regular_service_1_name_zh": "普通科门诊",
+ "regular_service_1_name_hmn": "Kev Pab Xyuas Thawj Zaug",
+ "regular_service_1_name_ko": "기본 진료",
+ "regular_service_1_name_es": "Servicios de atención primaria",
+ "regular_service_1_name_vi": "Dịch vụ khám sức khỏe tổng quát",
+ "regular_service_1_frequency_en": "Every Saturday ",
+ "regular_service_1_frequency_zh": "每周六",
+ "regular_service_1_frequency_hmn": "Txhua Vam Xos",
+ "regular_service_1_frequency_ko": "매주 토요일",
+ "regular_service_1_frequency_es": "Cada Sábado",
+ "regular_service_1_frequency_vi": "Mỗi thứ bảy",
+ "regular_service_2_name_en": "Cancer Screenings ",
+ "regular_service_2_name_zh": "癌症筛查 ",
+ "regular_service_2_name_hmn": "Tshuaj Ntsuam Khees Xaws",
+ "regular_service_2_name_ko": "암 검진",
+ "regular_service_2_name_es": "Exámenes de cáncer",
+ "regular_service_2_name_vi": "Kiểm tra ung thư",
+ "regular_service_2_frequency_en": "First Sunday Monthly ",
+ "regular_service_2_frequency_zh": "每月之首周天",
+ "regular_service_2_frequency_hmn": "Thawj Hnub Vas Thiv",
+ "regular_service_2_frequency_ko": "매월 첫 번째 일요일",
+ "regular_service_2_frequency_es": "Primer domingo de cada mes",
+ "regular_service_2_frequency_vi": "Chủ nhật đầu tiên hàng tháng",
+ "slide_1_title_en": "Specialty Clinics ",
+ "slide_1_title_zh": "专科门诊",
+ "slide_1_title_hmn": "Tsev Kho Mob Kho Thawj Yam Mob",
+ "slide_1_title_ko": "전문 클리닉",
+ "slide_1_title_es": "Clínicas especializadas",
+ "slide_1_title_vi": "Phòng khám chuyên khoa",
+ "slide_1_items_en": {
+ "1": "Musculoskeletal Clinic",
+ "2": "Dermatology",
+ "3": "Cardiopulmonary Clinic",
+ "4": "Liver Clinic"
+ },
+ "slide_1_items_zh": {
+ "1": "(MSK) 肌肉骨骼专科",
+ "2": "皮肤专科",
+ "3": "心肺专科",
+ "4": "肝脏专科"
+ },
+ "slide_1_items_hmn": {
+ "1": "Tsev Kho Mob Kuaj Cov Leeg Thiab Pob Txha",
+ "2": "Tsev Kho Mob Kuaj Daim Tawv Nqaij",
+ "3": "Tsev Kho Mob Kuaj Daim Siab Ntsws",
+ "4": "Tsev Kho Mob Kuaj Lub Ntsws"
+ },
+ "slide_1_items_ko": {
+ "1": "(MSK) 근골격계 클리닉",
+ "2": "피부과",
+ "3": "심폐 클리닉",
+ "4": "간 클리닉"
+ },
+ "slide_1_items_es": {
+ "1": "Musculoesquelética",
+ "2": "Dermatología",
+ "3": "Clinica Cardiopulmonar",
+ "4": "Clínica del Hígado"
+ },
+ "slide_1_items_vi": {
+ "1": "Cơ xương khớp",
+ "2": "Da liễu",
+ "3": "Tim phổi",
+ "4": "Khám gan"
+ },
+ "slide_2_title_en": "Hepatitis ",
+ "slide_2_title_zh": "肝炎",
+ "slide_2_title_hmn": "Kab Mob Ua Rau Daim Siab Pib O",
+ "slide_2_title_ko": "간염",
+ "slide_2_title_es": "Hepatitis ",
+ "slide_2_title_vi": "Viêm gan",
+ "slide_2_items_en": {
+ "1": "Liver cancer is often tied to Hepatitis B",
+ "2": "Transmission: blood, sex, mother-to-child. late diagnosis common",
+ "3": "Asians more vulnerable, higher infection rates, mortality",
+ "4": "Screening, vaccination, treatments available",
+ "5": "Free vaccines"
+ },
+ "slide_2_items_zh": {
+ "1": "肝癌通常与B 型肝炎有关",
+ "2": "传播途径:血液、性行为、母婴垂直传播. 常见晚期诊断",
+ "3": "亚裔处于劣势, 较高的感染率, 死亡率",
+ "4": "筛查, 疫苗接种, 可治疗",
+ "5": "免费疫苗",
+ "6": ""
+ },
+ "slide_2_items_hmn": {
+ "1": "Khees xaws ntawm daim siab yeej feem ntau los ntawm kev mob nyob ntawm daim siab thaum nws pib o",
+ "2": "Kis los ntawm: ntshav, kev pw ua ke, niam-rau-menyuam, feem ntau qhov kab mob no mam kuaj lig dhau lawm",
+ "3": "Cov neeg Esxias feem ntau raug qhov kab mob no tshaj lwm hais neeg thiab ua rau lawv tuag los ntawm qhov kab mob heev tshaj",
+ "4": "Peb kuaj tau, muaj tshuaj tiv thaiv qhov kab mob no, thiab kho tau qhov kab mob no"
+ },
+ "slide_2_items_ko": {
+ "1": "간암은 종종 B형 간염과 관련이 있습니다",
+ "2": "전염: 혈액, 성접촉, 모자 간 전파. 진단이 늦어지는 경우가 많습니다",
+ "3": "아시아인들이 더 취약하며, 감염률과 사망률이 높습니다",
+ "4": "검진, 예방접종, 치료가 가능합니다",
+ "5": "무료 예방접종"
+ },
+ "slide_2_items_es": {
+ "1": "El cáncer de hígado suele estar relacionado con la hepatitis B",
+ "2": "Transmisión: sanguínea, sexual, de madre a hijo. diagnostico tardío común",
+ "3": "Los asiáticos son más vulnerables, tasas de infección más altas, mortalidad",
+ "4": "Detección, vacunación, tratamientos disponibles",
+ "5": "Vacunas gratis"
+ },
+ "slide_2_items_vi": {
+ "1": "Ung thư gan thường gắn liền với viêm gan B",
+ "2": "Lây truyền: máu, tình dục, mẹ sang con. chẩn đoán muộn phổ biến",
+ "3": "Người Châu Á dễ bị tổn thương hơn, có tỷ lệ lây nhiễm và tử vong cao hơn",
+ "4": "Có sẵn tầm soát, tiêm chủng, điều trị",
+ "5": "Tiêm Vắc-xin miễn phí"
+ },
+ "slide_3_title_en": "Health Education & Preventative Measure",
+ "slide_3_title_zh": "健康教育及预防措施",
+ "slide_3_title_hmn": "Kawm Txog Kab Mob Thiab Los Kawm Kev Tiv Thaiv",
+ "slide_3_title_ko": "건강 교육 및 예방 조치",
+ "slide_3_title_es": "Educación sanitaria y medidas preventivas",
+ "slide_3_title_vi": "Giáo dục sức khỏe & biện pháp phòng ngừa",
+ "slide_3_items_en": {
+ "1": "Hypertension Workshops",
+ "2": "Nutrition Counseling",
+ "3": "Health Fair"
+ },
+ "slide_3_items_zh": {
+ "1": "高血压研讨会",
+ "2": "营养咨询",
+ "3": "健康博览会"
+ },
+ "slide_3_items_hmn": {
+ "1": "Chav Kawm Txog Ntshav Siab",
+ "2": "Tham Txog Kev Zaub Mov",
+ "3": "Koom Txoos Kho Mob"
+ },
+ "slide_3_items_ko": {
+ "1": "고혈압 워크숍",
+ "2": "영양 상담",
+ "3": "건강 박람회"
+ },
+ "slide_3_items_es": {
+ "1": "Talleres de hipertensión",
+ "2": "Asesoramiento nutricional",
+ "3": "Feria de la salud"
+ },
+ "slide_3_items_vi": {
+ "1": "Lớp giáo dục về bệnh tăng huyết áp",
+ "2": "Tư vấn dinh dưỡng",
+ "3": "Hội chợ y tế"
+ },
+ "slide_4_title_en": "Vaccines ",
+ "slide_4_title_zh": "疫苗接种",
+ "slide_4_title_hmn": "Tshuaj Tiv Thaiv Kab Mob",
+ "slide_4_title_ko": "예방접종",
+ "slide_4_title_es": "Vacunas",
+ "slide_4_title_vi": "Vắc-xin",
+ "slide_4_items_en": {
+ "1": "Hepatitis",
+ "2": "Annual flu-shots",
+ "3": "Health Fair"
+ },
+ "slide_4_items_zh": {
+ "1": "肝炎",
+ "2": "年度流感疫苗",
+ "3": "健康博览会"
+ },
+ "slide_4_items_hmn": {
+ "1": "Kab Mob Ua Rau Daim Siab O Tuaj",
+ "2": "Tshuaj Tiv Thaiv Khaub Thuas Txhua Xyoo",
+ "3": "Koom Txoos Kho Mob"
+ },
+ "slide_4_items_ko": {
+ "1": "간염",
+ "2": "매년 독감 예방 접종",
+ "3": "건강 박람회"
+ },
+ "slide_4_items_es": {
+ "1": "Hepatitis",
+ "2": "Vacunas anuales",
+ "3": "Feria de la salud"
+ },
+ "slide_4_items_vi": {
+ "1": "Viêm gan",
+ "2": "Chích ngừa cảm cúm hằng năm",
+ "3": "Hội chợ y tế"
+ },
+ "referrals_title_text_en": "Referrals ",
+ "referrals_title_text_zh": "转诊",
+ "referrals_title_text_hmn": "Chaws Peb Xa Tau Mus",
+ "referrals_title_text_ko": "전문 진료 의뢰",
+ "referrals_title_text_es": "Referencias",
+ "referrals_title_text_vi": "Giới Thiệu",
+ "referrals_en": [
+ "Surgery with SPIRIT program",
+ "UCDMC",
+ "Primary Care Clinic"
+ ],
+ "referrals_zh": [
+ "手术(与萨克拉门托医生的拓展、创新和教学计划合作)",
+ "加州大学戴维斯分校医学中心",
+ "初级保健诊所"
+ ],
+ "referrals_hmn": [
+ "Phais mob nrog lub koom haum SPIRIT",
+ "UC Davis Tsev Kho Mob",
+ "Tsev Kho Mob Saib Xyuas Thawj Zaug"
+ ],
+ "referrals_ko": [
+ "프로그램을 통한 수술",
+ "UC 데이비스 메디컬 센터",
+ "기본 진료 클리닉"
+ ],
+ "referrals_es": [
+ "Cirugía con programa SPIRIT",
+ "Centro médico UC Davis",
+ "Clinica de Atencion Primaria"
+ ],
+ "referrals_vi": [
+ "Phẫu thuật bằng chương trình SPIRIT",
+ "Trung tâm y tế UC Davis",
+ "Phòng khám tổng quát"
+ ],
+ "translators_title_text_en": "Translators",
+ "translators_title_text_zh": "翻译",
+ "translators_title_text_hmn": "Cov Lus Peb Txawj Txhais",
+ "translators_title_text_ko": "통역사",
+ "translators_title_text_es": "Traductores",
+ "translators_title_text_vi": "Thông dịch viên",
+ "translators_en": [
+ "Cantonese",
+ "Mandarin",
+ "Korean",
+ "Taishanese",
+ "Vietnamese",
+ "Hmong"
+ ],
+ "translators_zh": [
+ "广东话",
+ "普通话",
+ "朝鲜语",
+ "台山话",
+ "越南话",
+ "苗语"
+ ],
+ "translators_hmn": [
+ "Cantonese",
+ "Mandarin",
+ "Korean",
+ "Taishanese",
+ "Vietnamese",
+ "Hmong"
+ ],
+ "translators_ko": [
+ "광동어",
+ "중국어",
+ "한국어",
+ "태산어",
+ "베트남어",
+ "몽어"
+ ],
+ "translators_es": [
+ "Cantonés",
+ "Mandarín",
+ "Coreano",
+ "Taishan",
+ "Vietnamita",
+ "Hmong"
+ ],
+ "translators_vi": [
+ "Tiếng Quảng Đông",
+ "Tiếng Quan Thoại",
+ "Tiếng Hàn Quốc",
+ "Tiếng Thái Sơn",
+ "Tiếng Việt",
+ "Tiếng H'Mông"
+ ],
+ "_last_modified": "2024-11-12T13:29:43.313Z",
+ "_created_at": "2024-11-12T10:02:05.728Z",
+ "num_slide_1_items": "4",
+ "num_slide_2_items": "5",
+ "num_slide_3_items": "3",
+ "num_slide_4_items": "3",
+ "page_media": {
+ "slides_section": [
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406343/mjxucjxxrc8ynh1r2lyw.png",
+ "alt": "specialtyClinics.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406338/pgizvq1vxgm4gzpxrojp.png",
+ "alt": "hepatitis.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406340/tmihvgsftnmwidm59acf.png",
+ "alt": "healthEdu.png"
+ },
+ {
+ "src": "https://res.cloudinary.com/dhkigvupu/image/upload/v1731406334/kuftjrnjzweq6k4nueuc.png",
+ "alt": "vaccines.png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/src/messages/vi.json b/src/messages/vi.json
deleted file mode 100644
index 7ca75c1..0000000
--- a/src/messages/vi.json
+++ /dev/null
@@ -1,285 +0,0 @@
-{
- "Index": {
- "mission": {
- "our_mission_text": "Our Mission",
- "text": "Paul Hom Asian Clinic is a 501C(3) non-profit organization committed to serving underserved and uninsured Asian populations in a linguistically and culturally sensitive manner.\n\nAt Paul Hom we provide free primary care to the medically underserved, quality community medicine for our local community and interpretation services for the underserved Asian community.\n\nOur success is a result of the collaborative effort of all our health professional and undergraduate staff working to provide such important services."
- },
- "visit_us": {
- "visit_us_text": "Visit Us!",
- "contact_instruction": "Leave us a voicemail with your name and phone number, and we'll call you back to book an appointment.",
- "phone": "(916) 736-3966",
- "message": "Message",
- "address": "6341 Folsom Blvd Sacramento, CA 95819"
- },
- "closure_dates_text": "Closure Dates",
- "upcoming_events_text": "Upcoming Events",
- "image_gallery_overlay_text": {
- "title": "A Passion To Serve",
- "description": "Quality clinical services for our local community"
- }
- },
- "About": {
- "page_title_and_subtitle": {
- "title": "The Legacy of Paul Hom",
- "description": "We are the oldest Asian clinic in the United States."
- },
- "commitment_statement": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients.",
- "sister_clinics": {
- "clinic_category_title": "Our Sister Clinics",
- "clinic_count": "2",
- "clinic1": {
- "name": "VN Cares",
- "website_link": "https://www.vncares.org/"
- },
- "clinic2": {
- "name": "HLUB",
- "website_link": "https://hlubclinic.wordpress.com/"
- }
- },
- "ucd_clinics": {
- "clinic_category_title": "UC Davis Student-Run Clinics",
- "clinic_count": "6",
- "clinic1": {
- "name": "Bayanihan",
- "website_link": "https://www.bayanihanclinic.com/"
- },
- "clinic2": {
- "name": "Clinica Tepati",
- "website_link": "https://clinicatepati.com/"
- },
- "clinic3": {
- "name": "Imani clinic",
- "website_link": "https://www.imaniclinic.org/"
- },
- "clinic4": {
- "name": "Joan Viteri Memorial Clinic",
- "website_link": "https://www.jvmclinic.com/"
- },
- "clinic5": {
- "name": "Shifa Clinic",
- "website_link": "https://shifaclinic.org/"
- },
- "clinic6": {
- "name": "Willow Clinic",
- "website_link": "https://www.willowclinic.org/"
- }
- },
- "history_cards": {
- "card_count": "5",
- "card1": {
- "title": "1971 Our Beginning",
- "description": "In 1971, a group of UC Davis medical students led by Paul Hom held meetings with a group of activist undergraduate students from the California State University of Sacramento to discuss improving health care for elderly Asians and new immigrant families who were struggling to obtain adequate health care due to socioeconomic and language barriers. They decided to start a free clinic to target this problem.",
- "image_description": "portrait of the founder, Paul Hom"
- },
- "card2": {
- "title": "Creating a Team",
- "description": "Paul Hom approached Dr. Lindy Kumagai, one of the few Asian medical faculty members at UC Davis School of Medicine, and asked if he would be the medical director of the clinic. Dr. Lindy Kumagai was an advocate for the Civil Rights Movement and underserved Asian communities. He accepted the position and worked with Paul Hom and UC Davis medical students for the next 30 years.",
- "image_description": "portrait of Dr.Lindy Kumagai"
- },
- "card3": {
- "title": "Early Operations",
- "description": "The ‘Asian Clinic’, as it was called before being renamed to the Paul Hom Asian Clinic, operated out of the back of a bookstore providing primary care services to about 9-10 patients every Saturday. After some time, the community closed the bookstore and the clinic moved to the Sacramento Projects in New Helvecia (low income housing). The clinic later moved to its current location at the Safe Credit Union on Folsom Boulevard.",
- "image_description": "Picture of former clinic"
- },
- "card4": {
- "title": "Continuing the Legacy",
- "description": "After serving for 30 years, Dr. Lindy Kumagai passed on his position as medical director to Dr. Ronald Guy Jan. Dr. Jan had been volunteering for the clinic since 1980. He had an undying dedication and passion for serving the underserved. In the midst of starting his own practice, Dr. Jan would do his rounds between seven different hospitals and then come to the clinic to take on any patient that needed his help. Dr. Jan served for about 18-20 years before passing his position to the current medical director Dr. Christian Bohringer.",
- "image_description": "The Entire Medical Team in a group picture, smiling"
- },
- "card5": {
- "title": "Today",
- "description": "The existence of the Paul Hom Asian Clinic has proved beneficial not only to the patients, but also to the undergraduate students, medical students, and physicians who volunteer their time and efforts. The legacy of Dr. Paul Hom continues to thrive and is the oldest Asian clinic in all of America.",
- "image_description": "Current Student-Run Clinic Team in a group picture, smiling"
- }
- }
- },
- "GetInvolved": {
- "page_title": "Get Involved",
- "card1": {
- "title_short": "Physicians & Residents",
- "title_long": "Physicians and Residents",
- "sign_up_link": "/",
- "content_1": "Physicians and residents are a valuable component to our clinic because they serve as teachers and mentors to health professional students and undergrad patient advocates. They help facilitate the clinical process, such as guiding medical students in making a correct diagnosis, writing prescriptions for our patients, and providing medical services and advice.",
- "content_2": "Any physician and resident, primary care and specialty alike, is welcomed and appreciated in our clinic! If you are interested in volunteering as a preceptor please contact our physician scheduling team at: \n phac.physician.scheduler@gmail.com"
- },
- "card2": {
- "title_short": "Undergrad. Patient Advocates",
- "title_long": "Undergraduate Patient Advocates",
- "sign_up_link": "/",
- "content_1": "The term Patient Advocate aptly describes an undergraduate volunteer at the Paul Hom Asian Clinic. Patient Advocates mainly act as interpreters for predominantly Cantonese, Mandarin, and Vietnamese patients who visit the clinic. They also have a variety of responsibilities such as in taking vital signs, assisting in the dispensing of medications, and assisting medical students with patient care.",
- "content_2": "They continue to play an important role as patient educators and interpreters for our clinic. In addition, they have the opportunity to learn more about providing social services to the underserved. Our Fall 2023 undergraduate application is currently open!! If you have any additional questions, please contact phacugco-d@ucdavis.edu"
- },
- "card3": {
- "title_short": "Health Professional Students",
- "title_long": "Health Professional Students",
- "sign_up_link": "/",
- "content_1": "Health professional students are exposed to a variety of clinical responsibilities, such as interviewing patients, conducting physical exams, and performing laboratory procedures (blood draw, pap smears, vaccination, etc.). In addition, students also learn more about working with the underserved Asian population. To volunteer at our clinic, please sign up on the Inter-clinic Google Doc.",
- "content_2": "Dress code: business-casual with white coat and badge"
- },
- "details_text": "Details",
- "sign_up_text": "Sign Up",
- "donate_today_text": "Donate Today!",
- "donation_instruction": "Paul Hom Asian Clinic is a 501(c)(3) organization. If you would like to support our clinic, donations can be mailed to:",
- "address": "Paul Hom Asian Clinic\n6341 Folsom Blvd\nSacramento, CA 95819",
- "thank_you_text": "We thank you for your generoristy!"
- },
- "Services": {
- "page_title": "Our Services",
- "regular_service": {
- "service1": {
- "title": "Primary Care Services",
- "description": "Every Saturday"
- },
- "service2": {
- "title": "Cancer Screenings",
- "description": "First Sunday Monthly"
- }
- },
- "services_slides":{
- "slide_count": "4",
- "slide1": {
- "title": "Specialty Clinics",
- "count_of_bullet_points": "4",
- "list": {
- "item1": "Musculoskeletal Clinic (MSK)",
- "item2": "Dermatology",
- "item3": "Cardiopulmonary Clinic",
- "item4": "Liver Clinic"
- }
- },
- "slide2": {
- "title": "Hepatitis",
- "count_of_bullet_points": "5",
- "list": {
- "item1": "Liver cancer is often tied to Hepatitis B",
- "item2": "Transmission: blood, sex, mother-to-child; late diagnosis common",
- "item3": "Asians more vulnerable, higher infection rates, mortality",
- "item4": "Screening, vaccination, tratments available",
- "item5": "Free vaccines"
- }
- },
- "slide3": {
- "title": "Health Education & Preventative Measures",
- "count_of_bullet_points": "3",
- "list": {
- "item1": "Hypertension Workshops",
- "item2": "Nutrition Counseling",
- "item3": "Health Fair"
- }
- },
- "slide4": {
- "title": "Vaccines",
- "count_of_bullet_points": "3",
- "list": {
- "item1": "Hepatitis",
- "item2": "Annual flu-shots",
- "item3": "Health Fair"
- }
- }
- },
- "referrals_title_text": "Referrals",
- "referrals": {
- "item1": "Surgery with SPIRIT program",
- "item2": "UCDMC",
- "item3": "Primary Care Clinic"
- },
- "translators_title_text": "Translators",
- "translators": {
- "item1": "Cantonese",
- "item2": "Mandaring",
- "item3": "Korean",
- "item4": "Taishanese",
- "item5": "Vietnamese",
- "item6": "Hmong"
- }
- },
- "Committees": {
- "title_text": "Meet Our Committees!",
- "back_to_committees": "Back to committees",
- "count_of_committees": "9",
- "committee_names": {
- "item1": "cardiopulmonary",
- "item2": "covered-california",
- "item3": "patient-assistance-program",
- "item4": "dermatology",
- "item5": "diabetes",
- "item6": "hepatitis",
- "item7": "ophthalmology",
- "item8": "womens-health",
- "item9": "neurology"
- },
- "cards": {
- "cardiopulmonary": {
- "name": "Cardiopulmonary",
- "image": "/images/committees/cardiopulmonary.png",
- "path": "/committees/cardiopulmonary",
- "description": "The Cardiopulmonary Committee educates patients about cardiovascular, pulmonary, and heart-related diseases. We assist patients who are at risk or already addicted to nicotine by providing free cessation resources. The Cardiopulmonary Committee holds monthly specialty clinics that offer electrocardiogram (EKG) strips, ankle brachial index (ABI) tests, and spirometry tests. \n \n Next Cardiopulmonary Clinic: Sunday, November 20, 2022"
- },
- "covered-california": {
- "name": "Covered California",
- "image": "/images/committees/covered_california.png",
- "path": "/committees/covered-california",
- "description": "The Covered California Committee assists patients in signing up for affordable health insurance through Covered California, Medi-Cal and Medicare. All Covered California Co-Directors are certified enrollment counselors for Covered California and, therefore, are able to work with patients through the entirety of the insurance application. The Covered California Committee also provides assistance in SPIRIT referrals--where patients can potentially have their expensive surgeries paid for."
- },
- "dermatology": {
- "name": "Dermatology",
- "image": "/images/committees/dermatology.png",
- "path": "/committees/dermatology",
- "description": "The Dermatology committee is trained and educated to provide quality healthcare to patients experiencing simple to complex skin disorders. Some of the more common conditions that we screen for are eczema, psoriasis, pemphigus, rosacea, acne vulgaris, and all types of cancers. We provide free consultations for skin care and can even perform skin biopsies to rule out concerns for malignancies. Our team is dedicated to help you feel better about your own skin and how you wear it. We look forward to meeting you!\n \n Dermatology Clinics on Sunday, 9/25, 10/16, 12/11"
- },
- "diabetes": {
- "name": "Diabetes",
- "image": "/images/committees/diabetes.png",
- "path": "/committees/diabetes",
- "description": "The Diabetes Committee improves the health of patients by screening all patients for diabetes and conducting follow ups with prediabetic and diabetic patients. We also offer nutrition and diet counseling, show exercise demonstrations, and provide free glucometer kits and HgA1c blood tests. The committee holds annual patient education seminars and events to help patients feel equipped to manage their diabetes and overall health."
- },
- "patient-assistance-program": {
- "name": "Patient Assistance Program",
- "image": "/images/committees/patient_assistance_program.png",
- "path": "/committees/patient-assistance-program",
- "description": "The Patient Assistance Program (PAP) Committee enrolls low-income and uninsured/underinsured patients to receive brand-name medications at no cost from participating pharmaceutical companies. On average, we help patients save $130,000 a year on the medication cost. In addition, we have been leading various projects that provide patients free resources such as: accessories for injectable medications (syringes, needles, sharps containers, and needle clippers) and medication-related infographics. Recently, we have started collaborating with GoodRx to provide qualified patients monthly pre-paid debit cards for their chronic generic medications. Furthermore, the PAP Committee works closely with Dr. Jan and Dr. Pauly to monitor patients’ medication compliance, effectiveness, and safety, and to accommodate patients' other special needs on a case-by-case basis."
- },
- "hepatitis": {
- "name": "Hepatitis",
- "image": "/images/committees/hepatitis.png",
- "path": "/committees/hepatitis",
- "description": "Hepatitis is one of the leading causes of liver cancer, and the Asian population is at a significantly greater risk for having the disease. As a result, the Hepatitis Committee is devoted to identifying and treating this high-risk, underserved and uninsured Asian population in the Sacramento region. We currently provide free screening, vaccinations, and liver ultrasounds to patients. The Hepatitis Committee strives to educate our patients regarding Hepatitis B and encourage everyone to be screened and vaccinated."
- },
- "neurology": {
- "name": "Neurology",
- "image": "/images/committees/neurology.png",
- "path": "/committees/neurology",
- "description": "The Neurology Clinic assists patients with neurological issues, such as problems with memory, neuropathic pain (numb, tingling, or burning feet/hands), sleep, migraine, seizures, and any other issues related to the brain. We also offer dementia screening for patients who are older than 65 years of age and provide access to resources for patients, caretakers, and family members of individuals with memory loss issues."
- },
- "womens-health": {
- "name": "Women's Health",
- "image": "/images/committees/womens_health.png",
- "path": "/committees/womens-health",
- "description": "The Women’s Health Committee ensures patients have access to preventative cancer screenings available to them and hosts health events to educate patients about breast and cervical cancers--topics that are avoided in many Asian families. Some services this committee provides are: referrals to Planned Parenthood for mammograms; enrollment into the Every Woman Counts program for uninsured patients along with follow ups; and scheduling patients for OB/GYN clinics, PAP smears, and clinical breast exams (CBEs)."
- },
- "ophthalmology": {
- "name": "Ophthalmology",
- "image": "/images/committees/ophthalmology.png",
- "path": "/committees/ophthalmology",
- "description": "The Ophthalmology Committee monitors our patients’ history for eye conditions and provides patients with an assessment and follow-up care plan if needed. The committee conducts pupillary exams, intraocular pressure exams, visual acuity exams, slit lamp exams, and retinal exams during our clinic hours. Ophthalmology clinics are held quarterly on Sundays from 8:30am to 12pm. Depending on a patient’s insurance status and visual acuity, the Ophthalmology Committee can provide a VSP voucher which patients can use at a local optometrist’s office to obtain free-of-charge eyeglass frames and lenses and eye exams."
- }
- }
- },
- "Header": {
- "home": "HOME",
- "about_us": "ABOUT US",
- "services": "SERVICES",
- "committees": "COMMITEES",
- "get_involved": "GET INVOLVED",
- "clinic_name": "Paul Hom Asian Clinic",
- "clinic_description": "A Student-Run Clinic at UC Davis",
- "contact_us": "CONTACT US",
- "address": "6341 Folsom Blvd Sacramento, CA 95819",
- "thank_you_sponsors_text": "THANK YOU TO OUR SPONSORS FOR THEIR GENEROUS SUPPORT",
- "include_credit_line": "Designed & Developed with 🤍 by #include @ Davis"
- },
- "404page" : {
- "PageNotFound": "Error 404: Page not found",
- "BackToHome": "Back to home"
- }
-}
\ No newline at end of file
diff --git a/src/messages/zh.json b/src/messages/zh.json
deleted file mode 100644
index 7ca75c1..0000000
--- a/src/messages/zh.json
+++ /dev/null
@@ -1,285 +0,0 @@
-{
- "Index": {
- "mission": {
- "our_mission_text": "Our Mission",
- "text": "Paul Hom Asian Clinic is a 501C(3) non-profit organization committed to serving underserved and uninsured Asian populations in a linguistically and culturally sensitive manner.\n\nAt Paul Hom we provide free primary care to the medically underserved, quality community medicine for our local community and interpretation services for the underserved Asian community.\n\nOur success is a result of the collaborative effort of all our health professional and undergraduate staff working to provide such important services."
- },
- "visit_us": {
- "visit_us_text": "Visit Us!",
- "contact_instruction": "Leave us a voicemail with your name and phone number, and we'll call you back to book an appointment.",
- "phone": "(916) 736-3966",
- "message": "Message",
- "address": "6341 Folsom Blvd Sacramento, CA 95819"
- },
- "closure_dates_text": "Closure Dates",
- "upcoming_events_text": "Upcoming Events",
- "image_gallery_overlay_text": {
- "title": "A Passion To Serve",
- "description": "Quality clinical services for our local community"
- }
- },
- "About": {
- "page_title_and_subtitle": {
- "title": "The Legacy of Paul Hom",
- "description": "We are the oldest Asian clinic in the United States."
- },
- "commitment_statement": "Dr. Paul Hom had an untiring commitment to the clinic and to its purpose in serving patients of all ages in the Asian community who lack adequate healthcare due to cultural, linguistic, or economic barriers. Healthcare continues to be provided at no charge to all patients.",
- "sister_clinics": {
- "clinic_category_title": "Our Sister Clinics",
- "clinic_count": "2",
- "clinic1": {
- "name": "VN Cares",
- "website_link": "https://www.vncares.org/"
- },
- "clinic2": {
- "name": "HLUB",
- "website_link": "https://hlubclinic.wordpress.com/"
- }
- },
- "ucd_clinics": {
- "clinic_category_title": "UC Davis Student-Run Clinics",
- "clinic_count": "6",
- "clinic1": {
- "name": "Bayanihan",
- "website_link": "https://www.bayanihanclinic.com/"
- },
- "clinic2": {
- "name": "Clinica Tepati",
- "website_link": "https://clinicatepati.com/"
- },
- "clinic3": {
- "name": "Imani clinic",
- "website_link": "https://www.imaniclinic.org/"
- },
- "clinic4": {
- "name": "Joan Viteri Memorial Clinic",
- "website_link": "https://www.jvmclinic.com/"
- },
- "clinic5": {
- "name": "Shifa Clinic",
- "website_link": "https://shifaclinic.org/"
- },
- "clinic6": {
- "name": "Willow Clinic",
- "website_link": "https://www.willowclinic.org/"
- }
- },
- "history_cards": {
- "card_count": "5",
- "card1": {
- "title": "1971 Our Beginning",
- "description": "In 1971, a group of UC Davis medical students led by Paul Hom held meetings with a group of activist undergraduate students from the California State University of Sacramento to discuss improving health care for elderly Asians and new immigrant families who were struggling to obtain adequate health care due to socioeconomic and language barriers. They decided to start a free clinic to target this problem.",
- "image_description": "portrait of the founder, Paul Hom"
- },
- "card2": {
- "title": "Creating a Team",
- "description": "Paul Hom approached Dr. Lindy Kumagai, one of the few Asian medical faculty members at UC Davis School of Medicine, and asked if he would be the medical director of the clinic. Dr. Lindy Kumagai was an advocate for the Civil Rights Movement and underserved Asian communities. He accepted the position and worked with Paul Hom and UC Davis medical students for the next 30 years.",
- "image_description": "portrait of Dr.Lindy Kumagai"
- },
- "card3": {
- "title": "Early Operations",
- "description": "The ‘Asian Clinic’, as it was called before being renamed to the Paul Hom Asian Clinic, operated out of the back of a bookstore providing primary care services to about 9-10 patients every Saturday. After some time, the community closed the bookstore and the clinic moved to the Sacramento Projects in New Helvecia (low income housing). The clinic later moved to its current location at the Safe Credit Union on Folsom Boulevard.",
- "image_description": "Picture of former clinic"
- },
- "card4": {
- "title": "Continuing the Legacy",
- "description": "After serving for 30 years, Dr. Lindy Kumagai passed on his position as medical director to Dr. Ronald Guy Jan. Dr. Jan had been volunteering for the clinic since 1980. He had an undying dedication and passion for serving the underserved. In the midst of starting his own practice, Dr. Jan would do his rounds between seven different hospitals and then come to the clinic to take on any patient that needed his help. Dr. Jan served for about 18-20 years before passing his position to the current medical director Dr. Christian Bohringer.",
- "image_description": "The Entire Medical Team in a group picture, smiling"
- },
- "card5": {
- "title": "Today",
- "description": "The existence of the Paul Hom Asian Clinic has proved beneficial not only to the patients, but also to the undergraduate students, medical students, and physicians who volunteer their time and efforts. The legacy of Dr. Paul Hom continues to thrive and is the oldest Asian clinic in all of America.",
- "image_description": "Current Student-Run Clinic Team in a group picture, smiling"
- }
- }
- },
- "GetInvolved": {
- "page_title": "Get Involved",
- "card1": {
- "title_short": "Physicians & Residents",
- "title_long": "Physicians and Residents",
- "sign_up_link": "/",
- "content_1": "Physicians and residents are a valuable component to our clinic because they serve as teachers and mentors to health professional students and undergrad patient advocates. They help facilitate the clinical process, such as guiding medical students in making a correct diagnosis, writing prescriptions for our patients, and providing medical services and advice.",
- "content_2": "Any physician and resident, primary care and specialty alike, is welcomed and appreciated in our clinic! If you are interested in volunteering as a preceptor please contact our physician scheduling team at: \n phac.physician.scheduler@gmail.com"
- },
- "card2": {
- "title_short": "Undergrad. Patient Advocates",
- "title_long": "Undergraduate Patient Advocates",
- "sign_up_link": "/",
- "content_1": "The term Patient Advocate aptly describes an undergraduate volunteer at the Paul Hom Asian Clinic. Patient Advocates mainly act as interpreters for predominantly Cantonese, Mandarin, and Vietnamese patients who visit the clinic. They also have a variety of responsibilities such as in taking vital signs, assisting in the dispensing of medications, and assisting medical students with patient care.",
- "content_2": "They continue to play an important role as patient educators and interpreters for our clinic. In addition, they have the opportunity to learn more about providing social services to the underserved. Our Fall 2023 undergraduate application is currently open!! If you have any additional questions, please contact phacugco-d@ucdavis.edu"
- },
- "card3": {
- "title_short": "Health Professional Students",
- "title_long": "Health Professional Students",
- "sign_up_link": "/",
- "content_1": "Health professional students are exposed to a variety of clinical responsibilities, such as interviewing patients, conducting physical exams, and performing laboratory procedures (blood draw, pap smears, vaccination, etc.). In addition, students also learn more about working with the underserved Asian population. To volunteer at our clinic, please sign up on the Inter-clinic Google Doc.",
- "content_2": "Dress code: business-casual with white coat and badge"
- },
- "details_text": "Details",
- "sign_up_text": "Sign Up",
- "donate_today_text": "Donate Today!",
- "donation_instruction": "Paul Hom Asian Clinic is a 501(c)(3) organization. If you would like to support our clinic, donations can be mailed to:",
- "address": "Paul Hom Asian Clinic\n6341 Folsom Blvd\nSacramento, CA 95819",
- "thank_you_text": "We thank you for your generoristy!"
- },
- "Services": {
- "page_title": "Our Services",
- "regular_service": {
- "service1": {
- "title": "Primary Care Services",
- "description": "Every Saturday"
- },
- "service2": {
- "title": "Cancer Screenings",
- "description": "First Sunday Monthly"
- }
- },
- "services_slides":{
- "slide_count": "4",
- "slide1": {
- "title": "Specialty Clinics",
- "count_of_bullet_points": "4",
- "list": {
- "item1": "Musculoskeletal Clinic (MSK)",
- "item2": "Dermatology",
- "item3": "Cardiopulmonary Clinic",
- "item4": "Liver Clinic"
- }
- },
- "slide2": {
- "title": "Hepatitis",
- "count_of_bullet_points": "5",
- "list": {
- "item1": "Liver cancer is often tied to Hepatitis B",
- "item2": "Transmission: blood, sex, mother-to-child; late diagnosis common",
- "item3": "Asians more vulnerable, higher infection rates, mortality",
- "item4": "Screening, vaccination, tratments available",
- "item5": "Free vaccines"
- }
- },
- "slide3": {
- "title": "Health Education & Preventative Measures",
- "count_of_bullet_points": "3",
- "list": {
- "item1": "Hypertension Workshops",
- "item2": "Nutrition Counseling",
- "item3": "Health Fair"
- }
- },
- "slide4": {
- "title": "Vaccines",
- "count_of_bullet_points": "3",
- "list": {
- "item1": "Hepatitis",
- "item2": "Annual flu-shots",
- "item3": "Health Fair"
- }
- }
- },
- "referrals_title_text": "Referrals",
- "referrals": {
- "item1": "Surgery with SPIRIT program",
- "item2": "UCDMC",
- "item3": "Primary Care Clinic"
- },
- "translators_title_text": "Translators",
- "translators": {
- "item1": "Cantonese",
- "item2": "Mandaring",
- "item3": "Korean",
- "item4": "Taishanese",
- "item5": "Vietnamese",
- "item6": "Hmong"
- }
- },
- "Committees": {
- "title_text": "Meet Our Committees!",
- "back_to_committees": "Back to committees",
- "count_of_committees": "9",
- "committee_names": {
- "item1": "cardiopulmonary",
- "item2": "covered-california",
- "item3": "patient-assistance-program",
- "item4": "dermatology",
- "item5": "diabetes",
- "item6": "hepatitis",
- "item7": "ophthalmology",
- "item8": "womens-health",
- "item9": "neurology"
- },
- "cards": {
- "cardiopulmonary": {
- "name": "Cardiopulmonary",
- "image": "/images/committees/cardiopulmonary.png",
- "path": "/committees/cardiopulmonary",
- "description": "The Cardiopulmonary Committee educates patients about cardiovascular, pulmonary, and heart-related diseases. We assist patients who are at risk or already addicted to nicotine by providing free cessation resources. The Cardiopulmonary Committee holds monthly specialty clinics that offer electrocardiogram (EKG) strips, ankle brachial index (ABI) tests, and spirometry tests. \n \n Next Cardiopulmonary Clinic: Sunday, November 20, 2022"
- },
- "covered-california": {
- "name": "Covered California",
- "image": "/images/committees/covered_california.png",
- "path": "/committees/covered-california",
- "description": "The Covered California Committee assists patients in signing up for affordable health insurance through Covered California, Medi-Cal and Medicare. All Covered California Co-Directors are certified enrollment counselors for Covered California and, therefore, are able to work with patients through the entirety of the insurance application. The Covered California Committee also provides assistance in SPIRIT referrals--where patients can potentially have their expensive surgeries paid for."
- },
- "dermatology": {
- "name": "Dermatology",
- "image": "/images/committees/dermatology.png",
- "path": "/committees/dermatology",
- "description": "The Dermatology committee is trained and educated to provide quality healthcare to patients experiencing simple to complex skin disorders. Some of the more common conditions that we screen for are eczema, psoriasis, pemphigus, rosacea, acne vulgaris, and all types of cancers. We provide free consultations for skin care and can even perform skin biopsies to rule out concerns for malignancies. Our team is dedicated to help you feel better about your own skin and how you wear it. We look forward to meeting you!\n \n Dermatology Clinics on Sunday, 9/25, 10/16, 12/11"
- },
- "diabetes": {
- "name": "Diabetes",
- "image": "/images/committees/diabetes.png",
- "path": "/committees/diabetes",
- "description": "The Diabetes Committee improves the health of patients by screening all patients for diabetes and conducting follow ups with prediabetic and diabetic patients. We also offer nutrition and diet counseling, show exercise demonstrations, and provide free glucometer kits and HgA1c blood tests. The committee holds annual patient education seminars and events to help patients feel equipped to manage their diabetes and overall health."
- },
- "patient-assistance-program": {
- "name": "Patient Assistance Program",
- "image": "/images/committees/patient_assistance_program.png",
- "path": "/committees/patient-assistance-program",
- "description": "The Patient Assistance Program (PAP) Committee enrolls low-income and uninsured/underinsured patients to receive brand-name medications at no cost from participating pharmaceutical companies. On average, we help patients save $130,000 a year on the medication cost. In addition, we have been leading various projects that provide patients free resources such as: accessories for injectable medications (syringes, needles, sharps containers, and needle clippers) and medication-related infographics. Recently, we have started collaborating with GoodRx to provide qualified patients monthly pre-paid debit cards for their chronic generic medications. Furthermore, the PAP Committee works closely with Dr. Jan and Dr. Pauly to monitor patients’ medication compliance, effectiveness, and safety, and to accommodate patients' other special needs on a case-by-case basis."
- },
- "hepatitis": {
- "name": "Hepatitis",
- "image": "/images/committees/hepatitis.png",
- "path": "/committees/hepatitis",
- "description": "Hepatitis is one of the leading causes of liver cancer, and the Asian population is at a significantly greater risk for having the disease. As a result, the Hepatitis Committee is devoted to identifying and treating this high-risk, underserved and uninsured Asian population in the Sacramento region. We currently provide free screening, vaccinations, and liver ultrasounds to patients. The Hepatitis Committee strives to educate our patients regarding Hepatitis B and encourage everyone to be screened and vaccinated."
- },
- "neurology": {
- "name": "Neurology",
- "image": "/images/committees/neurology.png",
- "path": "/committees/neurology",
- "description": "The Neurology Clinic assists patients with neurological issues, such as problems with memory, neuropathic pain (numb, tingling, or burning feet/hands), sleep, migraine, seizures, and any other issues related to the brain. We also offer dementia screening for patients who are older than 65 years of age and provide access to resources for patients, caretakers, and family members of individuals with memory loss issues."
- },
- "womens-health": {
- "name": "Women's Health",
- "image": "/images/committees/womens_health.png",
- "path": "/committees/womens-health",
- "description": "The Women’s Health Committee ensures patients have access to preventative cancer screenings available to them and hosts health events to educate patients about breast and cervical cancers--topics that are avoided in many Asian families. Some services this committee provides are: referrals to Planned Parenthood for mammograms; enrollment into the Every Woman Counts program for uninsured patients along with follow ups; and scheduling patients for OB/GYN clinics, PAP smears, and clinical breast exams (CBEs)."
- },
- "ophthalmology": {
- "name": "Ophthalmology",
- "image": "/images/committees/ophthalmology.png",
- "path": "/committees/ophthalmology",
- "description": "The Ophthalmology Committee monitors our patients’ history for eye conditions and provides patients with an assessment and follow-up care plan if needed. The committee conducts pupillary exams, intraocular pressure exams, visual acuity exams, slit lamp exams, and retinal exams during our clinic hours. Ophthalmology clinics are held quarterly on Sundays from 8:30am to 12pm. Depending on a patient’s insurance status and visual acuity, the Ophthalmology Committee can provide a VSP voucher which patients can use at a local optometrist’s office to obtain free-of-charge eyeglass frames and lenses and eye exams."
- }
- }
- },
- "Header": {
- "home": "HOME",
- "about_us": "ABOUT US",
- "services": "SERVICES",
- "committees": "COMMITEES",
- "get_involved": "GET INVOLVED",
- "clinic_name": "Paul Hom Asian Clinic",
- "clinic_description": "A Student-Run Clinic at UC Davis",
- "contact_us": "CONTACT US",
- "address": "6341 Folsom Blvd Sacramento, CA 95819",
- "thank_you_sponsors_text": "THANK YOU TO OUR SPONSORS FOR THEIR GENEROUS SUPPORT",
- "include_credit_line": "Designed & Developed with 🤍 by #include @ Davis"
- },
- "404page" : {
- "PageNotFound": "Error 404: Page not found",
- "BackToHome": "Back to home"
- }
-}
\ No newline at end of file
diff --git a/src/pages/404.jsx b/src/pages/404.jsx
index 2c6bdd9..e49b692 100644
--- a/src/pages/404.jsx
+++ b/src/pages/404.jsx
@@ -1,21 +1,53 @@
import PageLayout from "@/components/layout";
import { useTranslations } from "next-intl";
+import Link from "next/link";
+import { HiOutlineExternalLink } from "react-icons/hi";
+import styles from "@/styles/pages/error-page/error-page.module.scss";
export async function getStaticProps({ locale }) {
- return {
- props: {
- messages: (await import(`@/messages/${locale}.json`)).default,
- },
- };
+ try {
+ const res = await (
+ await fetch(`${process.env.NEXT_APP_BASE_URL}/api/general`, {
+ method: "GET",
+ headers: {
+ "Content-Type": "application/json",
+ },
+ })
+ ).json();
+
+ if (res.ok) {
+ return {
+ props: {
+ messages: { General: res.body },
+ locale,
+ },
+ };
+ } else {
+ throw new Error(res.error);
+ }
+ } catch (e) {
+ console.log(`Error fetching general data: ${e.message}`);
+ return {
+ props: {
+ messages: {
+ General: (await import(`@/messages/general.json`)).default,
+ },
+ locale,
+ },
+ };
+ }
}
-export default function Custom404() {
- const t = useTranslations("404page");
+export default function Custom404({ locale }) {
+ const t = useTranslations("General");
return (
-
- {cardNums.map((_, index) => {
- const num = index + 1;
+ {historyImages.map((image, idx) => {
return (
- {index !== cardNums.length - 1 && ( // Render SVG for all but the last card
+ {idx !== historyImages.length - 1 && ( // Render SVG for all but the last card
)}
);
})}
-
{t("commitment_statement")}
-
+
{t(`commitment_statement_${locale}`)}
+
-
{t("ucd_clinics.clinic_category_title")}
+
{t(`ucd_clinics_text_${locale}`)}
- {ucdClinicsNums.map((_, index) => {
- const num = index + 1;
+ {ucdClinics.map((clinic, index) => {
return (