Code
Code
https://tarikjaber.github.io/Code-to-PDF/ 2/8
11/21/24, 1:22 PM Code
https://tarikjaber.github.io/Code-to-PDF/ 3/8
11/21/24, 1:22 PM Code
https://tarikjaber.github.io/Code-to-PDF/ 4/8
11/21/24, 1:22 PM Code
169 // );
170 // };
171
172 // export default SingleBlogPage;
173
174
175 import RelatedPost from "@/components/Blog/RelatedPost";
176 import SharePost from "@/components/Blog/SharePost";
177 import { Metadata } from "next";
178 import Image from "next/image";
179
180 export const metadata: Metadata = {
181 title: "Medical Blog Details Page",
182 description: "This is a Medical blog details page providing insights on
health and wellness.",
183 // other metadata
184 };
185
186 const SingleBlogPage = async () => {
187 return (
188 <>
189 <section className="pb-20 pt-35 lg:pb-25 lg:pt-45 xl:pb-30 xl:pt-50">
190 <div className="mx-auto max-w-c-1390 px-4 md:px-8 2xl:px-0">
191 <div className="flex flex-col-reverse gap-7.5 lg:flex-row xl:gap-
12.5">
192 <div className="md:w-1/2 lg:w-[32%]">
193 <div className="animate_top mb-10 rounded-md border border-stroke
bg-white p-3.5 shadow-solid-13 dark:border-strokedark dark:bg-blacksection">
194 <form
195 action="https://formbold.com/s/unique_form_id"
196 method="POST"
197 >
198 <div className="relative">
199 <input
200 type="text"
201 placeholder="Search Medical Topics..."
202 className="w-full rounded-lg border border-stroke px-6
py-4 shadow-solid-12 focus:border-primary focus:outline-none dark:border-
strokedark dark:bg-black dark:shadow-none dark:focus:border-primary"
203 />
204
205 <button
206 className="absolute right-0 top-0 p-5"
207 aria-label="search-icon"
208 >
209 <svg
210 className="fill-black transition-all duration-300
hover:fill-primary dark:fill-white dark:hover:fill-primary"
211 width="21"
212 height="21"
213 viewBox="0 0 21 21"
https://tarikjaber.github.io/Code-to-PDF/ 5/8
11/21/24, 1:22 PM Code
214 fill="none"
215 xmlns="http://www.w3.org/2000/svg"
216 >
217 <path d="M16.031 14.617L20.314 18.899L18.899
20.314L14.617 16.031C13.0237 17.3082 11.042 18.0029 9 18C4.032 18 0 13.968 0
9C0 4.032 4.032 0 9 0C13.968 0 18 4.032 18 9C18.0029 11.042 17.3082 13.0237
16.031 14.617ZM14.025 13.875C15.2941 12.5699 16.0029 10.8204 16 9C16 5.132
12.867 2 9 2C5.132 2 2 5.132 2 9C2 12.867 5.132 16 9 16C10.8204 16.0029 12.5699
15.2941 13.875 14.025L14.025 13.875Z" />
218 </svg>
219 </button>
220 </div>
221 </form>
222 </div>
223
224 <div className="animate_top mb-10 rounded-md border border-stroke
bg-white p-9 shadow-solid-13 dark:border-strokedark dark:bg-blacksection">
225 <h4 className="mb-7.5 text-2xl font-semibold text-black
dark:text-white">
226 Categories
227 </h4>
228
229 <ul>
230 <li className="mb-3 transition-all duration-300 last:mb-0
hover:text-primary">
231 <a href="#">Health Tips</a>
232 </li>
233 <li className="mb-3 transition-all duration-300 last:mb-0
hover:text-primary">
234 <a href="#">Wellness</a>
235 </li>
236 <li className="mb-3 transition-all duration-300 last:mb-0
hover:text-primary">
237 <a href="#">Nutrition</a>
238 </li>
239 <li className="mb-3 transition-all duration-300 last:mb-0
hover:text-primary">
240 <a href="#">Diseases</a>
241 </li>
242 <li className="mb-3 transition-all duration-300 last:mb-0
hover:text-primary">
243 <a href="#">Fitness</a>
244 </li>
245 </ul>
246 </div>
247
248 <RelatedPost />
249 </div>
250
251 <div className="lg:w-2/3">
https://tarikjaber.github.io/Code-to-PDF/ 6/8
11/21/24, 1:22 PM Code
https://tarikjaber.github.io/Code-to-PDF/ 7/8
11/21/24, 1:22 PM Code
298 </p>
299
300 <div className="flex flex-wrap gap-5">
301 <Image
302 src={"/images/blog/blog-01.png"}
303 width={350}
304 height={200}
305 alt="Healthy Heart"
306 />
307 <Image
308 src={"/images/blog/blog-02.png"}
309 width={350}
310 height={200}
311 alt="Exercise Benefits"
312 />
313 </div>
314
315 <h3 className="pt-8">
316 The Importance of Regular Checkups
317 </h3>
318
319 <p>
320 Routine checkups help in early detection and prevention of
321 potential health issues. Stay proactive in consulting your
322 healthcare provider to ensure a long, healthy life.
323 </p>
324 </div>
325
326 <SharePost />
327 </div>
328 </div>
329 </div>
330 </div>
331 </section>
332 </>
333 );
334 };
335
336 export default SingleBlogPage;
337
https://tarikjaber.github.io/Code-to-PDF/ 8/8