diff --git a/app/(pages)/office/page.tsx b/app/(pages)/office/page.tsx new file mode 100644 index 0000000..c03b238 --- /dev/null +++ b/app/(pages)/office/page.tsx @@ -0,0 +1,11 @@ +import OfficeInfo from "./views/OfficeInfo"; + +const Office = () => { + return ( +
+ +
+ ); +}; + +export default Office; diff --git a/app/(pages)/office/views/OfficeInfo.tsx b/app/(pages)/office/views/OfficeInfo.tsx new file mode 100644 index 0000000..a07423d --- /dev/null +++ b/app/(pages)/office/views/OfficeInfo.tsx @@ -0,0 +1,62 @@ +import CenterView from "@/components/CenterView"; +import officePic from "@/public/content/private_office.png"; +import officeMap from "@/public/content/office_map.png"; +import { ArrowTopRightOnSquareIcon } from "@heroicons/react/24/solid"; +import { default as Image } from "next-image-export-optimizer"; +import Link from "next/link"; + +const OfficeInfo = () => { + return ( + +
+
+

Private Practice

+

+ Dr. Feely is in private practice in Carmel, IN, outside of + Indianapolis. His practice is limited to difficult + neuromusculoskeletal pain conditions. +

+

The office is located at:

+

+ 755 W. Carmel Drive, Suite 211 +
+ Carmel, IN 46032 +
+ + View on Google Maps{" "} + + +

+

+ Treatment by appointment only. To schedule an appointment, please + call{" "} + + 463-282-1163. + {" "} + Payment is due at the time of service.{" "} + Insurance is not accepted. +

+
+
+ Dr. Feely's office + +
+
+
+ ); +}; + +export default OfficeInfo; diff --git a/app/views/Introduction.tsx b/app/views/Introduction.tsx index c856439..05a6c68 100644 --- a/app/views/Introduction.tsx +++ b/app/views/Introduction.tsx @@ -5,6 +5,7 @@ import { ChevronDoubleDownIcon } from "@heroicons/react/24/solid"; import drFeelyPic from "@/public/content/dr_feely_headshot2.png"; import { default as Image } from "next-image-export-optimizer"; import View from "@/components/View"; +import ArtLink from "@/components/ArtLink"; /* Here be dragons */ const Introduction = () => { @@ -35,6 +36,12 @@ const Introduction = () => { neuromusculoskeletal pain—especially head, neck, and back pain.

+

+ Dr. Feely is in private practice in Indianapolis.{" "} + + Learn More + +

{

Academic Appointments

+ +

+ Marian University +
+ College of Osteopathic Medicine +

+
2024-Present
+
+ Associate Clinical Professor of Osteopathic Manipulative Medicine +
+
+

Midwestern University
Chicago College of Osteopathic Medicine

-
1998-Present
+
1998-2024
Clinical Associate Professor of Osteopathic Manipulative Medicine
@@ -86,6 +99,11 @@ const AcademicAppts = ({ className }: Props) => { )}
+ Marian university logo {

Professional Experience

+ Marian university logo TCM tests logo + Feely LTD logo { )}
+ +

+ Marian University +
+ College of Osteopathic Medicine +

+
2024-Present
+
+ Associate Clinical Professor of Osteopathic Manipulative Medicine +
+
+ Professor at a leading osteopathic medical school in Indianapolis. +
+

TCMtests, LLC

2003-Present
@@ -78,6 +101,14 @@ const ProExp = ({ className }: Props) => { Acupuncturist and Oriental Medical Doctors
+ +

Private Practice (Feely, LTD.)

+
2024-Present
+
+ Dr. Feely's private practice in Carmel, Indiana.{" "} + Click here for more information. +
+

Feely Center for Optimal Health

2000-2023
diff --git a/components/Contact.tsx b/components/Contact.tsx index 90724a9..b9113ce 100644 --- a/components/Contact.tsx +++ b/components/Contact.tsx @@ -21,7 +21,7 @@ const Contact = () => { />
-

Contact Dr. Feely

+

Contact Dr. Feely

at{" "} { Home + + Office + Osteopathy diff --git a/public/content/at_still.png b/public/content/at_still.png index d455cd4..5d47be9 100644 Binary files a/public/content/at_still.png and b/public/content/at_still.png differ diff --git a/public/content/marian_university.png b/public/content/marian_university.png new file mode 100644 index 0000000..8cddfae Binary files /dev/null and b/public/content/marian_university.png differ diff --git a/public/content/marian_university.webp b/public/content/marian_university.webp new file mode 100644 index 0000000..47b269d Binary files /dev/null and b/public/content/marian_university.webp differ diff --git a/public/content/office_map.png b/public/content/office_map.png new file mode 100644 index 0000000..5434bf5 Binary files /dev/null and b/public/content/office_map.png differ diff --git a/public/content/private_office.png b/public/content/private_office.png new file mode 100644 index 0000000..fdd63f7 Binary files /dev/null and b/public/content/private_office.png differ