|
| 1 | +import Image from "next/image"; |
| 2 | +import Image1 from "../../../public/doctor.png"; |
| 3 | +import DoctorPhoto from "../../../public/doctor-asanka-nugaliyadde.jpeg"; |
| 4 | +import Link from "next/link"; |
| 5 | +import { ArrowTopRightOnSquareIcon } from "@heroicons/react/24/solid"; |
| 6 | + |
| 7 | +export default function Page() { |
| 8 | + return ( |
| 9 | + <div className=""> |
| 10 | + <section className="flex flex-col items-center justify-center h-[400px] bg-gradient-to-r from-blue-100 to-white text-center px-4"> |
| 11 | + <h1 className="text-4xl font-bold text-gray-800 mb-4"> |
| 12 | + About Arthritis.lk |
| 13 | + </h1> |
| 14 | + <p className="text-lg text-gray-600 max-w-2xl"> |
| 15 | + The vision, mission, and the driving force behind this useful |
| 16 | + information portal |
| 17 | + </p> |
| 18 | + </section> |
| 19 | + <div className="container mx-auto xl:px-[200px] py-10 pb-16 px-[24px] flex flex-col gap-8 gap-y-16 items-start h-auto "> |
| 20 | + <section> |
| 21 | + <h1 className="text-3xl font-bold">What is Arthritis.lk</h1> |
| 22 | + <div className="flex flex-col lg:flex-row mt-8 gap-8"> |
| 23 | + <Image |
| 24 | + src={Image1} |
| 25 | + width={400} |
| 26 | + height={400} |
| 27 | + className="object-cover rounded-xl w-full h-[300px] lg:max-h-[600px] lg:max-w-[600px]" |
| 28 | + alt="Image" |
| 29 | + /> |
| 30 | + <div> |
| 31 | + <p className="text-lg text-gray-600"> |
| 32 | + Arthritis.lk is a free and open-to-all platform where patients |
| 33 | + can find information about specific Rheumatic conditions. Led by |
| 34 | + Dr. Asanka Nugaliyadde, Consultant Rheumatologist at the |
| 35 | + Teaching Hospital, Kurunegala. |
| 36 | + </p> |
| 37 | + <p className="text-lg text-gray-600 mt-2"> |
| 38 | + Suspendisse nisi nullam pellentesque odio magna. Montes nascetur |
| 39 | + risus pharetra aliquet, tempus ante efficitur. Magnis pharetra |
| 40 | + taciti dolor; sapien cursus porttitor. Dictumst felis non |
| 41 | + aliquet; inceptos venenatis taciti magna. Dui metus massa morbi |
| 42 | + malesuada interdum ad eget vel. Pulvinar habitant arcu mollis |
| 43 | + erat senectus. Non tempor varius dui ante sed nibh vel |
| 44 | + scelerisque. Conubia ac tortor est dapibus platea aptent. Aenean |
| 45 | + mus consequat eros condimentum in mollis urna venenatis maximus. |
| 46 | + </p> |
| 47 | + <Link |
| 48 | + href="/contact" |
| 49 | + className="inline-flex items-center mt-4 hover:text-blue-600 transition-all duration-300 font-semibold"> |
| 50 | + Learn more about the doctor |
| 51 | + <ArrowTopRightOnSquareIcon width={24} className="ml-2" /> |
| 52 | + </Link> |
| 53 | + </div> |
| 54 | + </div> |
| 55 | + </section> |
| 56 | + <section> |
| 57 | + <h1 className="text-3xl font-bold">About the Doctor</h1> |
| 58 | + <div className="flex flex-col lg:flex-row mt-8 gap-8"> |
| 59 | + <div className="relative min-w-[300px] min0 h-[300px] w-[300px]"> |
| 60 | + <Image |
| 61 | + src={DoctorPhoto} |
| 62 | + width={400} |
| 63 | + height={400} |
| 64 | + className="absolute w-full h-full object-cover rounded-xl" |
| 65 | + alt="Image" |
| 66 | + /> |
| 67 | + </div> |
| 68 | + <div> |
| 69 | + <p className="text-lg text-gray-600"> |
| 70 | + Arthritis.lk is a free and open-to-all platform where patients |
| 71 | + can find information about specific Rheumatic conditions. Led by |
| 72 | + Dr. Asanka Nugaliyadde, Consultant Rheumatologist at the |
| 73 | + Teaching Hospital, Kurunegala. |
| 74 | + </p> |
| 75 | + <p className="text-lg text-gray-600 mt-2"> |
| 76 | + Suspendisse nisi nullam pellentesque odio magna. Montes nascetur |
| 77 | + risus pharetra aliquet, tempus ante efficitur. Magnis pharetra |
| 78 | + taciti dolor; sapien cursus porttitor. Dictumst felis non |
| 79 | + aliquet; inceptos venenatis taciti magna. Dui metus massa morbi |
| 80 | + malesuada interdum ad eget vel. |
| 81 | + </p> |
| 82 | + <p className="mt-4 font-semibold italic"> |
| 83 | + Dr Asanka Nugaliyadde |
| 84 | + <br /> |
| 85 | + MBBS MD Specialty Certificate in Rheumatology (UK) |
| 86 | + <br /> |
| 87 | + Consultant Rheumatologist at Teaching Hospital Kurunegala |
| 88 | + </p> |
| 89 | + <div className="flex items-center mt-4 space-x-4"> |
| 90 | + <Link |
| 91 | + href="https://www.linkedin.com/in/asanka-nugaliyadde-20006188" |
| 92 | + className="inline-flex items-center hover:text-blue-600 transition-all duration-300 font-semibold"> |
| 93 | + Linkedin |
| 94 | + <ArrowTopRightOnSquareIcon width={24} className="ml-2" /> |
| 95 | + </Link> |
| 96 | + <Link |
| 97 | + href="https://www.researchgate.net/profile/Asanka-Nugaliyadde-2" |
| 98 | + className="inline-flex items-center hover:text-blue-600 transition-all duration-300 font-semibold"> |
| 99 | + Research Gate |
| 100 | + <ArrowTopRightOnSquareIcon width={24} className="ml-2" /> |
| 101 | + </Link> |
| 102 | + <Link |
| 103 | + href="https://www.researchgate.net/profile/Asanka-Nugaliyadde-2" |
| 104 | + className="inline-flex items-center hover:text-blue-600 transition-all duration-300 font-semibold"> |
| 105 | + Email |
| 106 | + <ArrowTopRightOnSquareIcon width={24} className="ml-2" /> |
| 107 | + </Link> |
| 108 | + </div> |
| 109 | + </div> |
| 110 | + </div> |
| 111 | + </section> |
| 112 | + <section> |
| 113 | + <h1 className="text-3xl font-bold">About the Hospital</h1> |
| 114 | + <div className="flex flex-col lg:flex-row mt-8 gap-8"> |
| 115 | + <div className="relative min-w-[300px] min0 h-[300px] w-[300px]"> |
| 116 | + <Image |
| 117 | + src={ |
| 118 | + "https://upload.wikimedia.org/wikipedia/commons/0/05/Teaching_Hospital_Kurunegala.png" |
| 119 | + } |
| 120 | + width={400} |
| 121 | + height={400} |
| 122 | + className="absolute w-full h-full object-cover rounded-xl" |
| 123 | + alt="Image" |
| 124 | + /> |
| 125 | + </div> |
| 126 | + <div> |
| 127 | + <p className="text-lg text-gray-600"> |
| 128 | + Suspendisse nisi nullam pellentesque odio magna. Montes nascetur |
| 129 | + risus pharetra aliquet, tempus ante efficitur. Magnis pharetra |
| 130 | + taciti dolor; sapien cursus porttitor. Dictumst felis non |
| 131 | + aliquet; inceptos venenatis taciti magna. Dui metus massa morbi |
| 132 | + malesuada interdum ad eget vel. |
| 133 | + </p> |
| 134 | + <p className="text-lg text-gray-600 mt-2"> |
| 135 | + Suspendisse nisi nullam pellentesque odio magna. Montes nascetur |
| 136 | + risus pharetra aliquet, tempus ante efficitur. Magnis pharetra |
| 137 | + taciti dolor; sapien cursus porttitor. Dictumst felis non |
| 138 | + aliquet; inceptos venenatis taciti magna. Dui metus massa morbi |
| 139 | + malesuada interdum ad eget vel. |
| 140 | + </p> |
| 141 | + <div className="flex items-center mt-4 space-x-4"> |
| 142 | + <Link |
| 143 | + href="https://linkedin.com/in/asanka-nugaliyadde" |
| 144 | + className="inline-flex items-center hover:text-blue-600 transition-all duration-300 font-semibold"> |
| 145 | + Contact Hospital |
| 146 | + <ArrowTopRightOnSquareIcon width={24} className="ml-2" /> |
| 147 | + </Link> |
| 148 | + </div> |
| 149 | + </div> |
| 150 | + </div> |
| 151 | + </section> |
| 152 | + </div> |
| 153 | + </div> |
| 154 | + ); |
| 155 | +} |
0 commit comments