import {languages_types} from "@/types"; import PageHeaderSlider from "@/ui/page-header-slider/PageHeaderSlider"; import React from "react"; import {getDictionary} from "../dictionaries"; import { pages_titles } from "@/constants"; import { Metadata } from "next"; export const metadata: Metadata = { title: pages_titles.patient_rights_charter['fa'] + ' | ' +'بیمارستان شمال', description: "Shomal Hospital IPD patient rights charter page", }; export default async function PatientRights({ params, }: { params: Promise<{lang: languages_types}>; }) { const {lang} = await params; const {patient_rights_charter} = await getDictionary(lang); return ( <>

{patient_rights_charter?.page_title}

{patient_rights_charter?.section_one?.title}



{patient_rights_charter?.section_two?.title}

{patient_rights_charter?.section_three?.title}

{patient_rights_charter?.section_four?.title}

); }