Files
nobat724_front/components/aboutUs/index.js

37 lines
1.7 KiB
JavaScript
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { getStateInfo } from "@/lib/getStateInfo";
import Head from "./Head";
import Services from "./Services";
async function AboutUsPage() {
const { matchedCity } = await getStateInfo();
const siteName = matchedCity?.site_name || "نوبت ۷۲۴";
const slogan = matchedCity?.slogan;
return (
<div
className=" pt-[24px] sm:pt-[56px] md:pt-[88px] lg:pt-[120px] mt-[56px] px-0 md:px-[80px] lg:px-[108px] "
>
<Head siteName={siteName} slogan={slogan} />
<div
className=" text-[#525252] text-[16px] font-normal mt-[32px] leading-[28px] md:leading-[32px] lg:leading-[40px] px-[16px] sm:px-[52px] md:px-[15%] text-justify md:text-center flex flex-col gap-[16px] "
>
<p>
{siteName} یک سامانهی آنلاین نوبتدهی پزشکی است که با هدف سادهتر کردن
دسترسی مردم به خدمات سلامت طراحی شده است. ما تلاش میکنیم تجربهی رزرو
نوبت پزشک را سریع، شفاف و بدون نیاز به مراجعهی حضوری یا تماس تلفنی
فراهم کنیم.
</p>
<p>
در {siteName} میتوانید بر اساس تخصص، نام پزشک یا مرکز درمانی جستجو
کنید، برنامهی کاری و نوبتهای آزاد را ببینید و در کمترین زمان ممکن
نوبت خود را ثبت کنید. هدف ما کاهش زمان انتظار و ایجاد ارتباط مؤثر میان
بیماران، پزشکان و کلینیکهاست.
</p>
</div>
<Services />
</div>
);
}
export default AboutUsPage;