Add contact form
Fix import issue
This commit is contained in:
parent
48f94238af
commit
9f4a42ab93
2 changed files with 10 additions and 5 deletions
|
|
@ -9,13 +9,18 @@ export default function ContactPage() {
|
|||
Contact Us
|
||||
</h1>
|
||||
<p className="mt-6 text-lg leading-8 text-gray-600">
|
||||
Our contact form is coming soon.
|
||||
Ready to elevate your financial strategy? Let's discuss how we can help you achieve your goals.
|
||||
</p>
|
||||
<div className="mt-10 flex flex-col items-center gap-4 text-base text-gray-600">
|
||||
</div>
|
||||
|
||||
<div className="mt-16">
|
||||
<Contact />
|
||||
</div>
|
||||
|
||||
<div className="mt-10 flex flex-col items-center gap-4 text-base text-gray-600">
|
||||
<p>Serving clients nationwide from Albuquerque, New Mexico headquarters</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue