drfeely.com/app/views/Introduction.tsx

71 lines
2.8 KiB
TypeScript
Raw Normal View History

2023-08-25 19:06:28 +00:00
"use client";
2023-08-31 03:18:58 +00:00
import HomePageCarousel from "@/components/HomePageCarousel";
2023-08-25 19:06:28 +00:00
import { ChevronDoubleDownIcon } from "@heroicons/react/24/solid";
2023-09-10 01:18:46 +00:00
import drFeelyPic from "@/public/content/dr_feely_headshot2.png";
2023-10-20 19:25:25 +00:00
import { default as Image } from "next-image-export-optimizer";
2023-08-31 03:18:58 +00:00
import View from "@/components/View";
2024-08-02 19:42:31 +00:00
import ArtLink from "@/components/ArtLink";
2023-08-25 19:06:28 +00:00
2023-08-31 03:18:58 +00:00
/* Here be dragons */
const Introduction = () => {
2023-07-25 03:14:18 +00:00
return (
2023-08-31 03:18:58 +00:00
<View
bg_color="bg-primary-500 bg-opacity-75"
txt_color="text-primary-100"
2023-08-25 19:06:28 +00:00
id="introduction"
className="relative overflow-hidden"
2023-08-25 19:06:28 +00:00
>
2023-08-31 03:18:58 +00:00
{/* "relative" above makes the background work */}
{/* we have to do some funky stuff with margins to get the look
we want for the home page */}
<div className="my-10 flex min-h-screen items-center md:my-[-6rem]">
<div className="flex flex-col items-center gap-12 p-0 md:mb-32 md:mt-48 md:flex-row md:justify-around">
<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="">Richard A. Feely, DO</h1>
2023-07-25 03:14:18 +00:00
</div>
</div>
<p className="text-2xl">
2023-09-10 01:18:46 +00:00
Dr. Feely is an experienced, highly accomplished physician in
osteopathic manipulative medicine, acupuncture, herbal medicine,
and family practice. He developed the new osteopathic manipulative
procedure Neuro Ocular Release, that takes away pain in just 3
seconds. Dr. Feely specializes in the treatment of
neuromusculoskeletal pain&mdash;especially head, neck, and back
pain.
</p>
2024-08-02 19:42:31 +00:00
<p className="mt-4 text-2xl">
Dr. Feely is in private practice in Indianapolis.{" "}
<ArtLink href="/office" divClasses="inline">
Learn More
</ArtLink>
</p>
</hgroup>
2023-08-31 03:18:58 +00:00
<div className="basis-4/12">
2023-08-25 19:06:28 +00:00
<Image
className="w-fit rounded-3xl shadow-superPortraitR shadow-secondary-500"
2023-08-25 19:06:28 +00:00
src={drFeelyPic}
alt="Headshot of Dr. Feely"
2023-07-25 03:14:18 +00:00
/>
</div>
</div>
2023-08-31 03:18:58 +00:00
</div>
{/* bouncy arrow :) */}
<div className="absolute bottom-0 left-1/2 mb-4 ml-[-10px] hidden animate-bounce rounded-full bg-secondary-500 p-1.5 drop-shadow-xl md:block">
2023-08-31 03:18:58 +00:00
<ChevronDoubleDownIcon
width="20px"
className=""
></ChevronDoubleDownIcon>
2023-07-25 03:14:18 +00:00
</div>
2023-08-31 03:18:58 +00:00
{/* background image magic */}
<HomePageCarousel className="absolute left-0 top-0 z-[-2] h-full w-full"></HomePageCarousel>
<div className="absolute left-0 top-0 z-[-3] h-full w-full bg-primary-500"></div>
2023-08-31 03:18:58 +00:00
</View>
2023-07-25 03:14:18 +00:00
);
};
export default Introduction;