From 9f4a42ab935d4ee14df6c8be4f6a80b486e768ee Mon Sep 17 00:00:00 2001 From: TheMaddax Date: Fri, 29 Nov 2024 10:07:37 -0600 Subject: [PATCH] Add contact form Fix import issue --- src/app/contact/page.tsx | 13 +++++++++---- src/components/ServiceCard.tsx | 2 +- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 54bde0f..2a20bd6 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -9,13 +9,18 @@ export default function ContactPage() { Contact Us

- Our contact form is coming soon. + Ready to elevate your financial strategy? Let's discuss how we can help you achieve your goals.

-
+
+ +
+ +
+ +

Serving clients nationwide from Albuquerque, New Mexico headquarters

-
); -} \ No newline at end of file +} diff --git a/src/components/ServiceCard.tsx b/src/components/ServiceCard.tsx index 4687c7a..57f14ed 100644 --- a/src/components/ServiceCard.tsx +++ b/src/components/ServiceCard.tsx @@ -1,7 +1,7 @@ 'use client' import { useState } from 'react' -import { Modal } from './Modal' +import { Modal } from '@/components/Modal' import { ServiceInfo } from '@/types/services' export default function ServiceCard(service: ServiceInfo) {