2023-08-25 19:06:28 +00:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
import Carousel from "@/components/Carousel";
|
|
|
|
import { ChevronDoubleDownIcon } from "@heroicons/react/24/solid";
|
2023-08-28 00:41:10 +00:00
|
|
|
import drFeelyPic from "@/public/content/dr_feely_headshot.png";
|
2023-08-25 19:06:28 +00:00
|
|
|
import Image from "next/image";
|
|
|
|
|
2023-07-27 04:40:20 +00:00
|
|
|
const Introduction = () => {
|
2023-07-25 03:14:18 +00:00
|
|
|
return (
|
2023-08-25 19:06:28 +00:00
|
|
|
<section
|
|
|
|
className="text-primary-100 relative min-h-screen bg-primary-500 z-[-20]"
|
|
|
|
id="introduction"
|
|
|
|
>
|
|
|
|
<div className="min-h-screen bg-transparent w-full flex items-center relative z-[-2] overflow-hidden">
|
2023-07-25 03:14:18 +00:00
|
|
|
<div className="w-11/12 lg:w-5/6 mt-32 my-14 md:mt-12 md:my-0 mx-auto flex items-center flex-col gap-12 md:gap-4 md:flex-row md:justify-around">
|
2023-07-27 04:40:20 +00:00
|
|
|
<hgroup className="basis-6/12">
|
2023-07-25 03:14:18 +00:00
|
|
|
<div className="relative">
|
|
|
|
<div className="before:absolute before:-left-52 before:-top-44 before:z-[-1] before:content-textAccent">
|
|
|
|
<h1 className="text-7xl lg:text-7xl font-cormorant pb-10">
|
|
|
|
Richard A. Feely, DO
|
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-07-27 04:40:20 +00:00
|
|
|
<p className="text-2xl">
|
2023-07-25 03:14:18 +00:00
|
|
|
Dr. Feely is a highly accomplished physician with over 25 years of
|
|
|
|
experience in osteopathic medicine, acupuncture, herbal medicine,
|
|
|
|
and family practice. He specializes in the treatment of
|
|
|
|
neuromusculoskeletal pain—especially back pain, neck pain
|
|
|
|
and headaches.
|
2023-07-27 04:40:20 +00:00
|
|
|
</p>
|
|
|
|
</hgroup>
|
2023-07-25 03:14:18 +00:00
|
|
|
<div className="basis-4/12 flex justify-center">
|
2023-08-25 19:06:28 +00:00
|
|
|
<Image
|
|
|
|
className="shadow-superPortraitR shadow-secondary-500 rounded-3xl max-w-sm w-full md:max-w-md"
|
|
|
|
src={drFeelyPic}
|
2023-07-27 04:40:20 +00:00
|
|
|
alt="Headshot of Dr. Feely"
|
2023-07-25 03:14:18 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-08-25 19:06:28 +00:00
|
|
|
<div className="bg-secondary-500 rounded-full hidden md:inline-block ml-[-10px] mb-3 absolute bottom-0 left-1/2 animate-bounce drop-shadow-xl p-1.5">
|
|
|
|
<a href="/#philosophy">
|
|
|
|
<ChevronDoubleDownIcon
|
|
|
|
width="20px"
|
|
|
|
className=""
|
|
|
|
></ChevronDoubleDownIcon>
|
|
|
|
</a>
|
|
|
|
</div>
|
2023-07-25 03:14:18 +00:00
|
|
|
</div>
|
2023-08-25 19:06:28 +00:00
|
|
|
<Carousel className="absolute top-0 left-0 h-full w-full z-[-10]"></Carousel>
|
2023-07-25 03:14:18 +00:00
|
|
|
</section>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2023-07-27 04:40:20 +00:00
|
|
|
export default Introduction;
|