edit menu
This commit is contained in:
BIN
public/doctor.jpg
Normal file
BIN
public/doctor.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
@@ -4,11 +4,11 @@ import PageHeaderSlider from "@/ui/page-header-slider/PageHeaderSlider";
|
||||
import {toPersianNumber} from "@/utils/functions";
|
||||
import Image from "next/image";
|
||||
import React from "react";
|
||||
import { getDictionary } from "../dictionaries";
|
||||
import { Metadata } from "next";
|
||||
import { pages_titles } from "@/constants";
|
||||
import {getDictionary} from "../dictionaries";
|
||||
import {Metadata} from "next";
|
||||
import {pages_titles} from "@/constants";
|
||||
export const metadata: Metadata = {
|
||||
title: pages_titles.doctors['fa'] + ' | ' +'بیمارستان شمال',
|
||||
title: pages_titles.doctors["fa"] + " | " + "بیمارستان شمال",
|
||||
description: "Shomal Hospital IPD Doctors page",
|
||||
};
|
||||
|
||||
@@ -21,7 +21,14 @@ export default async function DoctorsPage({
|
||||
}) {
|
||||
const {lang} = await params;
|
||||
const {name = "", expertise = ""} = await searchParams;
|
||||
const {our_doctors,license_number,search_by_name,search,select_expertise,doctors}=await getDictionary(lang)
|
||||
const {
|
||||
our_doctors,
|
||||
license_number,
|
||||
search_by_name,
|
||||
search,
|
||||
select_expertise,
|
||||
doctors,
|
||||
} = await getDictionary(lang);
|
||||
const filteredData = doctors.filter((doctor) => {
|
||||
const nameMatch = name
|
||||
? Object.values(doctor.fullname.toString())
|
||||
@@ -53,7 +60,7 @@ export default async function DoctorsPage({
|
||||
lang={lang}
|
||||
defaultName={name}
|
||||
defaultExpertise={expertise}
|
||||
dict={{search,search_by_name,select_this:select_expertise}}
|
||||
dict={{search, search_by_name, select_this: select_expertise}}
|
||||
/>
|
||||
<div className="grid grid-cols-4 gap-10 mt-10 ">
|
||||
{filteredData?.map((doctor) => (
|
||||
@@ -63,7 +70,7 @@ export default async function DoctorsPage({
|
||||
>
|
||||
<div className="lg:h-[250px] h-[200px] relative before:absolute before:bottom-0 before:bg-gradient-to-t before:from-white before:to-transparent before:z-10 before:w-full before:h-full before:top-0 before:right-0">
|
||||
<Image
|
||||
src="/doctor.png"
|
||||
src="/doctor.jpg"
|
||||
fill
|
||||
alt=""
|
||||
className="object-fill"
|
||||
|
||||
@@ -8,11 +8,11 @@ import {FooterMenuLinks1} from "@/constants/menu/menu.const";
|
||||
import CustomLink from "@/ui/components/global/CustomLink";
|
||||
import {getHref} from "@/utils/functions";
|
||||
import {languages_types} from "@/types";
|
||||
import { getDictionary } from "./dictionaries";
|
||||
import {getDictionary} from "./dictionaries";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App",
|
||||
description: "Generated by create next app",
|
||||
title: "بیماران بین الملل | بیمارستان شمال آمل",
|
||||
description: "صفحه ی بیماران بین الملل بیمارستان شمال آمل",
|
||||
};
|
||||
export async function generateStaticParams() {
|
||||
return [{lang: "en"}, {lang: "fa"}, {lang: "ar"}];
|
||||
@@ -36,95 +36,97 @@ export default async function RootLayout({
|
||||
<TopNavbar lang={lang as languages_types} />
|
||||
<TopMenu lang={lang as languages_types} />
|
||||
{children}
|
||||
<footer className="bg-blue-primary rounded-t-2xl py-20 container ">
|
||||
<div className="grid lg:grid-cols-12 sm:grid-cols-2 grid-cols-1 w-full container lg:gap-x-10 gap-y-0 gap-y-10">
|
||||
<div className="lg:col-span-3 col-span-12 flex flex-col items-center justify-start gap-x-3">
|
||||
<div className="relative h-[140px] w-[140px]">
|
||||
<Image
|
||||
loading="lazy"
|
||||
src="/main-logo.png"
|
||||
fill
|
||||
alt="shomal hospital"
|
||||
style={{
|
||||
color: "transparent",
|
||||
fill: "red",
|
||||
objectFit: "contain",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<p
|
||||
className={`text-white leading-relaxed mt-4 text-sm ${
|
||||
lang === "en" ? "text-left" : "text-right"
|
||||
}`}
|
||||
>
|
||||
{footer?.under_logo_text}
|
||||
</p>
|
||||
</div>
|
||||
<div className="lg:col-span-5 col-span-12 flex justify-center">
|
||||
<div className="space-y-5">
|
||||
<h4 className="text-white mb-10">{dict.related_links}</h4>
|
||||
<ul className="space-y-4 text-neutral-300 transition-colors duration-300 mt-5">
|
||||
{FooterMenuLinks1.map((link) => (
|
||||
<li
|
||||
key={link.id}
|
||||
className="group cursor-pointer hover:text-secondary flex items-center text-menu-colors relative !h-full "
|
||||
>
|
||||
<span className="flex items-center gap-x-2 !h-full ">
|
||||
<CustomLink
|
||||
href={getHref(link.href, lang)}
|
||||
label={link.label[lang]}
|
||||
className={`font-medium transition-all `}
|
||||
/>
|
||||
</span>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div className="lg:col-span-4 col-span-12">
|
||||
<div className=" p-4 bg-white rounded-xl">
|
||||
<h4 className="font-semibold text-secondary mb-4">
|
||||
{footer?.contact_us_text}
|
||||
</h4>
|
||||
<p className="text-sm">
|
||||
<strong className=" text-blue-primary">
|
||||
{footer?.our_address}
|
||||
</strong>{" "}
|
||||
:{footer?.contact_us?.address}
|
||||
</p>
|
||||
<p className="mt-4 rtl text-sm">
|
||||
<strong className=" text-blue-primary">
|
||||
{footer?.ipd_technician_number}
|
||||
</strong>{" "}
|
||||
:
|
||||
<span style={{direction: "ltr"}}>
|
||||
{footer?.contact_us?.ipd_technician_number}
|
||||
</span>
|
||||
</p>
|
||||
<p className="my-4 rtl text-sm">
|
||||
<strong className=" text-blue-primary">
|
||||
{footer?.hospital_number}
|
||||
</strong>{" "}
|
||||
:
|
||||
<span style={{direction: "ltr"}}>
|
||||
{footer?.contact_us?.hospital_number}
|
||||
</span>
|
||||
</p>
|
||||
<div className="relative w-full pb-[56.25%] rounded-xl overflow-hidden">
|
||||
<iframe
|
||||
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6419.524849772638!2d52.347594!3d36.439127!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3f8fbd6849bf386b%3A0x26cbc9441b00f373!2sShomal%20Hospital!5e0!3m2!1sen!2sus!4v1762836982418!5m2!1sen!2sus"
|
||||
// width="100%"
|
||||
style={{border: "0"}}
|
||||
allowFullScreen={false}
|
||||
<div className="bg-blue-primary">
|
||||
<footer className=" rounded-t-2xl py-20 container ">
|
||||
<div className="grid lg:grid-cols-12 sm:grid-cols-2 grid-cols-1 w-full container lg:gap-x-10 gap-y-0 gap-y-10">
|
||||
<div className="lg:col-span-3 col-span-12 flex flex-col items-center justify-start gap-x-3">
|
||||
<div className="relative h-[140px] w-[140px]">
|
||||
<Image
|
||||
loading="lazy"
|
||||
referrerPolicy="no-referrer-when-downgrade"
|
||||
className="absolute top-0 left-0 w-full h-full border-0"
|
||||
></iframe>
|
||||
src="/main-logo.png"
|
||||
fill
|
||||
alt="shomal hospital"
|
||||
style={{
|
||||
color: "transparent",
|
||||
fill: "red",
|
||||
objectFit: "contain",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<p
|
||||
className={`text-white leading-relaxed mt-4 text-sm ${
|
||||
lang === "en" ? "text-left" : "text-right"
|
||||
}`}
|
||||
>
|
||||
{footer?.under_logo_text}
|
||||
</p>
|
||||
</div>
|
||||
<div className="lg:col-span-5 col-span-12 flex justify-center">
|
||||
<div className="space-y-5">
|
||||
<h4 className="text-white mb-10">{dict.related_links}</h4>
|
||||
<ul className="space-y-4 text-neutral-300 transition-colors duration-300 mt-5">
|
||||
{FooterMenuLinks1.map((link) => (
|
||||
<li
|
||||
key={link.id}
|
||||
className="group cursor-pointer hover:text-secondary flex items-center text-menu-colors relative !h-full "
|
||||
>
|
||||
<span className="flex items-center gap-x-2 !h-full ">
|
||||
<CustomLink
|
||||
href={getHref(link.href, lang)}
|
||||
label={link.label[lang]}
|
||||
className={`font-medium transition-all `}
|
||||
/>
|
||||
</span>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div className="lg:col-span-4 col-span-12">
|
||||
<div className=" p-4 bg-white rounded-xl">
|
||||
<h4 className="font-semibold text-secondary mb-4">
|
||||
{footer?.contact_us_text}
|
||||
</h4>
|
||||
<p className="text-sm">
|
||||
<strong className=" text-blue-primary">
|
||||
{footer?.our_address}
|
||||
</strong>{" "}
|
||||
:{footer?.contact_us?.address}
|
||||
</p>
|
||||
<p className="mt-4 rtl text-sm">
|
||||
<strong className=" text-blue-primary">
|
||||
{footer?.ipd_technician_number}
|
||||
</strong>{" "}
|
||||
:
|
||||
<span style={{direction: "ltr"}}>
|
||||
{footer?.contact_us?.ipd_technician_number}
|
||||
</span>
|
||||
</p>
|
||||
<p className="my-4 rtl text-sm">
|
||||
<strong className=" text-blue-primary">
|
||||
{footer?.hospital_number}
|
||||
</strong>{" "}
|
||||
:
|
||||
<span style={{direction: "ltr"}}>
|
||||
{footer?.contact_us?.hospital_number}
|
||||
</span>
|
||||
</p>
|
||||
<div className="relative w-full pb-[56.25%] rounded-xl overflow-hidden">
|
||||
<iframe
|
||||
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6419.524849772638!2d52.347594!3d36.439127!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3f8fbd6849bf386b%3A0x26cbc9441b00f373!2sShomal%20Hospital!5e0!3m2!1sen!2sus!4v1762836982418!5m2!1sen!2sus"
|
||||
// width="100%"
|
||||
style={{border: "0"}}
|
||||
allowFullScreen={false}
|
||||
loading="lazy"
|
||||
referrerPolicy="no-referrer-when-downgrade"
|
||||
className="absolute top-0 left-0 w-full h-full border-0"
|
||||
></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
||||
@@ -116,7 +116,7 @@ export default async function Page({
|
||||
<div className="grid grid-cols-3 gap-x-10 lg:gap-y-0 gap-y-4 mt-10 lg:h-[600px]">
|
||||
<div className="lg:col-span-1 col-span-3 rounded-2xl border-[1px] border-neutral-200 overflow-hidden relative">
|
||||
<div className="lg:h-[410px] h-[300px] relative before:absolute before:bottom-0 before:bg-gradient-to-t before:from-white before:to-transparent before:z-10 before:w-full before:h-full before:top-0 before:right-0">
|
||||
<Image src="/doctor.png" fill alt="" className="object-fill" />
|
||||
<Image src="/doctor.jpg" fill alt="" className="object-fill" />
|
||||
</div>
|
||||
<div className=" h-full px-6 py-10 space-y-2 ">
|
||||
<h3 className="lg:text-2xl text-lg font-black text-black">
|
||||
|
||||
@@ -5,10 +5,10 @@ import {getDictionary} from "../dictionaries";
|
||||
import Image from "next/image";
|
||||
import TransferServicesPackages from "@/ui/TransferServicesPackages";
|
||||
import {toPersianNumber} from "@/utils/functions";
|
||||
import { Metadata } from "next";
|
||||
import { pages_titles } from "@/constants";
|
||||
import {Metadata} from "next";
|
||||
import {pages_titles} from "@/constants";
|
||||
export const metadata: Metadata = {
|
||||
title: pages_titles.transfer_services['fa'] + ' | ' +'بیمارستان شمال',
|
||||
title: pages_titles.transfer_services["fa"] + " | " + "بیمارستان شمال",
|
||||
description: "Shomal Hospital IPD transfer services page",
|
||||
};
|
||||
export default async function TransferServicePage({
|
||||
@@ -17,8 +17,14 @@ export default async function TransferServicePage({
|
||||
params: Promise<{lang: languages_types}>;
|
||||
}) {
|
||||
const {lang} = await params;
|
||||
const {transfer_service_page, package_price, phone_number, email,oxin_hotel_location,olympic_hotel_location} =
|
||||
await getDictionary(lang);
|
||||
const {
|
||||
transfer_service_page,
|
||||
package_price,
|
||||
phone_number,
|
||||
email,
|
||||
oxin_hotel_location,
|
||||
olympic_hotel_location,
|
||||
} = await getDictionary(lang);
|
||||
return (
|
||||
<>
|
||||
<PageHeaderSlider
|
||||
@@ -42,7 +48,7 @@ export default async function TransferServicePage({
|
||||
<div className="grid grid-cols-2 gap-x-10 lg:gap-y-0 gap-y-4 mt-10 lg:h-[600px]">
|
||||
<div className="lg:col-span-1 col-span-3 rounded-2xl border-[1px] border-neutral-200 overflow-hidden relative">
|
||||
<div className="lg:h-[410px] h-[300px] relative before:absolute before:bottom-0 before:bg-gradient-to-t before:from-white before:to-transparent before:z-10 before:w-full before:h-full before:top-0 before:right-0">
|
||||
<Image src="/doctor.png" fill alt="" className="object-fill" />
|
||||
<Image src="/doctor.jpg" fill alt="" className="object-fill" />
|
||||
</div>
|
||||
<div className=" h-full px-6 py-10 space-y-2 ">
|
||||
<h3 className="lg:text-2xl text-lg font-black text-black">
|
||||
@@ -84,7 +90,7 @@ export default async function TransferServicePage({
|
||||
</div>
|
||||
<div className="lg:col-span-1 col-span-3 rounded-2xl border-[1px] border-neutral-200 overflow-hidden relative">
|
||||
<div className="lg:h-[410px] h-[300px] relative before:absolute before:bottom-0 before:bg-gradient-to-t before:from-white before:to-transparent before:z-10 before:w-full before:h-full before:top-0 before:right-0">
|
||||
<Image src="/doctor.png" fill alt="" className="object-fill" />
|
||||
<Image src="/doctor.jpg" fill alt="" className="object-fill" />
|
||||
</div>
|
||||
<div className=" h-full px-6 py-10 space-y-2 ">
|
||||
<h3 className="lg:text-2xl text-lg font-black text-black">
|
||||
@@ -143,12 +149,20 @@ export default async function TransferServicePage({
|
||||
{transfer_service_page.introduction.our_serives_ipd}
|
||||
</h3>
|
||||
<>
|
||||
<div className="mt-20 introduction_description_subText" dangerouslySetInnerHTML={{__html:transfer_service_page.services}}/>
|
||||
<div
|
||||
className="mt-20 introduction_description_subText"
|
||||
dangerouslySetInnerHTML={{__html: transfer_service_page.services}}
|
||||
/>
|
||||
</>
|
||||
<h3 className="my-10 lg:text-[3em] text-3xl font-black text-blue-primary text-center relative before:absolute before:w-[100px] before:block before:bg-secondary before:-bottom-5 before:h-[2px] before:left-[50%] before:translate-x-[-50%] ">
|
||||
{transfer_service_page.introduction.packages_list}
|
||||
</h3>
|
||||
<TransferServicesPackages oxin_hotel_location={oxin_hotel_location} olympic_hotel_location={olympic_hotel_location} transfer_service_page={transfer_service_page} package_price={package_price} />
|
||||
<TransferServicesPackages
|
||||
oxin_hotel_location={oxin_hotel_location}
|
||||
olympic_hotel_location={olympic_hotel_location}
|
||||
transfer_service_page={transfer_service_page}
|
||||
package_price={package_price}
|
||||
/>
|
||||
</div>
|
||||
</section>
|
||||
</>
|
||||
|
||||
@@ -27,9 +27,9 @@ export default function TopMenu({lang}: {lang: languages_types}) {
|
||||
return () => window.removeEventListener("scroll", handleScroll);
|
||||
}, []);
|
||||
return (
|
||||
<>
|
||||
<div className="w-full">
|
||||
<div
|
||||
className={`w-full z-30 transition-all duration-300 container flex lg:justify-around justify-between items-center
|
||||
className={`w-full z-30 transition-all duration-300 md:px-10 px-4 flex lg:justify-around justify-between items-center
|
||||
${
|
||||
isSticky
|
||||
? "h-[80px] lg:fixed top-0 custom-shadow backdrop-blur-3xl bg-white/80"
|
||||
@@ -102,6 +102,6 @@ export default function TopMenu({lang}: {lang: languages_types}) {
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,67 +1,69 @@
|
||||
import React from "react";
|
||||
import LanguagesChanger from "../components/LanguagesChanger";
|
||||
import { languages_types } from "@/types";
|
||||
import { default_info } from "@/constants";
|
||||
import {languages_types} from "@/types";
|
||||
import {default_info} from "@/constants";
|
||||
|
||||
export default function TopNavbar({lang}:{lang:languages_types}) {
|
||||
export default function TopNavbar({lang}: {lang: languages_types}) {
|
||||
return (
|
||||
<div className="py-2 container bg-blue-primary flex items-center justify-between">
|
||||
<div className="flex items-center justify-center gap-x-2 group">
|
||||
<span className="text-[#e6e6e6] group-hover:text-white">
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
<div className="bg-blue-primary">
|
||||
<div className="py-2 container flex items-center justify-between w-full">
|
||||
<div className="flex items-center justify-center gap-x-2 group">
|
||||
<span className="text-[#e6e6e6] group-hover:text-white">
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M4 20C3.45 20 2.97917 19.8042 2.5875 19.4125C2.19583 19.0208 2 18.55 2 18V6C2 5.45 2.19583 4.97917 2.5875 4.5875C2.97917 4.19583 3.45 4 4 4H20C20.55 4 21.0208 4.19583 21.4125 4.5875C21.8042 4.97917 22 5.45 22 6V18C22 18.55 21.8042 19.0208 21.4125 19.4125C21.0208 19.8042 20.55 20 20 20H4ZM12 13L4 8V18H20V8L12 13ZM12 11L20 6H4L12 11ZM4 8V6V18V8Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<span className="text-[#e6e6e6] group-hover:text-white lg:text-base text-sm">
|
||||
<a href={`mailto:${default_info.email}`}>{default_info.email}</a>
|
||||
</span>
|
||||
</div>
|
||||
<div className="lg:flex hidden items-center justify-end gap-x-4 ">
|
||||
<a
|
||||
href="https://instagram.com/shomalhospital"
|
||||
className="flex items-center justify-start gap-x-1 text-white"
|
||||
>
|
||||
<path
|
||||
d="M4 20C3.45 20 2.97917 19.8042 2.5875 19.4125C2.19583 19.0208 2 18.55 2 18V6C2 5.45 2.19583 4.97917 2.5875 4.5875C2.97917 4.19583 3.45 4 4 4H20C20.55 4 21.0208 4.19583 21.4125 4.5875C21.8042 4.97917 22 5.45 22 6V18C22 18.55 21.8042 19.0208 21.4125 19.4125C21.0208 19.8042 20.55 20 20 20H4ZM12 13L4 8V18H20V8L12 13ZM12 11L20 6H4L12 11ZM4 8V6V18V8Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<span className="text-[#e6e6e6] group-hover:text-white lg:text-base text-sm">
|
||||
<a href={`mailto:${default_info.email}`}>{default_info.email}</a>
|
||||
</span>
|
||||
</div>
|
||||
<div className="lg:flex hidden items-center justify-end gap-x-4 ">
|
||||
<a
|
||||
href="https://instagram.com/shomalhospital"
|
||||
className="flex items-center justify-start gap-x-1 text-white"
|
||||
>
|
||||
<svg
|
||||
width="21"
|
||||
height="21"
|
||||
viewBox="0 0 25 25"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M7.88333 5.09347C7.88308 5.61528 7.68707 6.11561 7.33843 6.4844C6.98978 6.85319 6.51705 7.06023 6.02423 7.05997C5.53141 7.05971 5.05888 6.85217 4.71058 6.48301C4.36228 6.11385 4.16675 5.61331 4.16699 5.0915C4.16724 4.56969 4.36325 4.06936 4.71189 3.70057C5.06054 3.33178 5.53327 3.12474 6.02609 3.125C6.51891 3.12526 6.99144 3.3328 7.33974 3.70196C7.68804 4.07112 7.88357 4.57166 7.88333 5.09347ZM7.93907 8.51689H4.22274V20.8333H7.93907V8.51689ZM13.8109 8.51689H10.1131V20.8333H13.7737V14.3702C13.7737 10.7697 18.2054 10.4352 18.2054 14.3702V20.8333H21.8753V13.0323C21.8753 6.96258 15.316 7.18884 13.7737 10.1696L13.8109 8.51689Z"
|
||||
fill="white"
|
||||
/>
|
||||
</svg>
|
||||
</a>
|
||||
<span className="text-white"> | </span>
|
||||
<svg
|
||||
width="21"
|
||||
height="21"
|
||||
viewBox="0 0 25 25"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M7.88333 5.09347C7.88308 5.61528 7.68707 6.11561 7.33843 6.4844C6.98978 6.85319 6.51705 7.06023 6.02423 7.05997C5.53141 7.05971 5.05888 6.85217 4.71058 6.48301C4.36228 6.11385 4.16675 5.61331 4.16699 5.0915C4.16724 4.56969 4.36325 4.06936 4.71189 3.70057C5.06054 3.33178 5.53327 3.12474 6.02609 3.125C6.51891 3.12526 6.99144 3.3328 7.33974 3.70196C7.68804 4.07112 7.88357 4.57166 7.88333 5.09347ZM7.93907 8.51689H4.22274V20.8333H7.93907V8.51689ZM13.8109 8.51689H10.1131V20.8333H13.7737V14.3702C13.7737 10.7697 18.2054 10.4352 18.2054 14.3702V20.8333H21.8753V13.0323C21.8753 6.96258 15.316 7.18884 13.7737 10.1696L13.8109 8.51689Z"
|
||||
fill="white"
|
||||
/>
|
||||
</svg>
|
||||
</a>
|
||||
<span className="text-white"> | </span>
|
||||
|
||||
<a href="https://instagram.com/shomalhospital">
|
||||
<svg
|
||||
width="21"
|
||||
height="21"
|
||||
viewBox="0 0 25 25"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M8.12467 2.08337H16.8747C20.208 2.08337 22.9163 4.79171 22.9163 8.12504V16.875C22.9163 18.4774 22.2798 20.0141 21.1468 21.1471C20.0137 22.2802 18.477 22.9167 16.8747 22.9167H8.12467C4.79134 22.9167 2.08301 20.2084 2.08301 16.875V8.12504C2.08301 6.52269 2.71954 4.98597 3.85257 3.85294C4.9856 2.71991 6.52232 2.08337 8.12467 2.08337ZM7.91634 4.16671C6.92178 4.16671 5.96795 4.5618 5.26469 5.26506C4.56143 5.96832 4.16634 6.92215 4.16634 7.91671V17.0834C4.16634 19.1563 5.84342 20.8334 7.91634 20.8334H17.083C18.0776 20.8334 19.0314 20.4383 19.7347 19.735C20.4379 19.0318 20.833 18.0779 20.833 17.0834V7.91671C20.833 5.84379 19.1559 4.16671 17.083 4.16671H7.91634ZM17.9684 5.72921C18.3138 5.72921 18.6449 5.86639 18.8891 6.11058C19.1333 6.35477 19.2705 6.68596 19.2705 7.03129C19.2705 7.37662 19.1333 7.70781 18.8891 7.952C18.6449 8.19619 18.3138 8.33337 17.9684 8.33337C17.6231 8.33337 17.2919 8.19619 17.0477 7.952C16.8035 7.70781 16.6663 7.37662 16.6663 7.03129C16.6663 6.68596 16.8035 6.35477 17.0477 6.11058C17.2919 5.86639 17.6231 5.72921 17.9684 5.72921ZM12.4997 7.29171C13.881 7.29171 15.2058 7.84044 16.1825 8.81719C17.1593 9.79394 17.708 11.1187 17.708 12.5C17.708 13.8814 17.1593 15.2061 16.1825 16.1829C15.2058 17.1596 13.881 17.7084 12.4997 17.7084C11.1183 17.7084 9.79358 17.1596 8.81683 16.1829C7.84007 15.2061 7.29134 13.8814 7.29134 12.5C7.29134 11.1187 7.84007 9.79394 8.81683 8.81719C9.79358 7.84044 11.1183 7.29171 12.4997 7.29171ZM12.4997 9.37504C11.6709 9.37504 10.876 9.70428 10.29 10.2903C9.70391 10.8764 9.37467 11.6712 9.37467 12.5C9.37467 13.3288 9.70391 14.1237 10.29 14.7097C10.876 15.2958 11.6709 15.625 12.4997 15.625C13.3285 15.625 14.1233 15.2958 14.7094 14.7097C15.2954 14.1237 15.6247 13.3288 15.6247 12.5C15.6247 11.6712 15.2954 10.8764 14.7094 10.2903C14.1233 9.70428 13.3285 9.37504 12.4997 9.37504Z"
|
||||
fill="white"
|
||||
/>
|
||||
</svg>
|
||||
</a>
|
||||
<span className="text-white"> | </span>
|
||||
<a href="https://instagram.com/shomalhospital">
|
||||
<svg
|
||||
width="21"
|
||||
height="21"
|
||||
viewBox="0 0 25 25"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M8.12467 2.08337H16.8747C20.208 2.08337 22.9163 4.79171 22.9163 8.12504V16.875C22.9163 18.4774 22.2798 20.0141 21.1468 21.1471C20.0137 22.2802 18.477 22.9167 16.8747 22.9167H8.12467C4.79134 22.9167 2.08301 20.2084 2.08301 16.875V8.12504C2.08301 6.52269 2.71954 4.98597 3.85257 3.85294C4.9856 2.71991 6.52232 2.08337 8.12467 2.08337ZM7.91634 4.16671C6.92178 4.16671 5.96795 4.5618 5.26469 5.26506C4.56143 5.96832 4.16634 6.92215 4.16634 7.91671V17.0834C4.16634 19.1563 5.84342 20.8334 7.91634 20.8334H17.083C18.0776 20.8334 19.0314 20.4383 19.7347 19.735C20.4379 19.0318 20.833 18.0779 20.833 17.0834V7.91671C20.833 5.84379 19.1559 4.16671 17.083 4.16671H7.91634ZM17.9684 5.72921C18.3138 5.72921 18.6449 5.86639 18.8891 6.11058C19.1333 6.35477 19.2705 6.68596 19.2705 7.03129C19.2705 7.37662 19.1333 7.70781 18.8891 7.952C18.6449 8.19619 18.3138 8.33337 17.9684 8.33337C17.6231 8.33337 17.2919 8.19619 17.0477 7.952C16.8035 7.70781 16.6663 7.37662 16.6663 7.03129C16.6663 6.68596 16.8035 6.35477 17.0477 6.11058C17.2919 5.86639 17.6231 5.72921 17.9684 5.72921ZM12.4997 7.29171C13.881 7.29171 15.2058 7.84044 16.1825 8.81719C17.1593 9.79394 17.708 11.1187 17.708 12.5C17.708 13.8814 17.1593 15.2061 16.1825 16.1829C15.2058 17.1596 13.881 17.7084 12.4997 17.7084C11.1183 17.7084 9.79358 17.1596 8.81683 16.1829C7.84007 15.2061 7.29134 13.8814 7.29134 12.5C7.29134 11.1187 7.84007 9.79394 8.81683 8.81719C9.79358 7.84044 11.1183 7.29171 12.4997 7.29171ZM12.4997 9.37504C11.6709 9.37504 10.876 9.70428 10.29 10.2903C9.70391 10.8764 9.37467 11.6712 9.37467 12.5C9.37467 13.3288 9.70391 14.1237 10.29 14.7097C10.876 15.2958 11.6709 15.625 12.4997 15.625C13.3285 15.625 14.1233 15.2958 14.7094 14.7097C15.2954 14.1237 15.6247 13.3288 15.6247 12.5C15.6247 11.6712 15.2954 10.8764 14.7094 10.2903C14.1233 9.70428 13.3285 9.37504 12.4997 9.37504Z"
|
||||
fill="white"
|
||||
/>
|
||||
</svg>
|
||||
</a>
|
||||
<span className="text-white"> | </span>
|
||||
|
||||
<LanguagesChanger lang={lang} />
|
||||
<LanguagesChanger lang={lang} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user