Merge pull request #13 from OwethuManagedServices/25-05-2025/New-Changes

removed contact us page
This commit is contained in:
2025-05-26 11:28:32 +02:00
committed by GitHub
2 changed files with 95 additions and 95 deletions

View File

@ -24,11 +24,11 @@ import {
FaChartLine, // For Growth/Scalability
FaTasks, // For QA
FaComments, // For Feedback
FaPhone,
FaEnvelope,
//FaPhone,
//FaEnvelope,
} from "react-icons/fa";
import { COLORS } from "@/constants";
import ContactForm from "@/components/ContactForm";
//import ContactForm from "@/components/ContactForm";
// SEO Metadata
export const metadata: Metadata = {
@ -541,7 +541,7 @@ export default function ProductDevelopmentPage() {
</section>
{/* 11. Contact Information Section */}
<section
{/* <section
id="contact"
className="py-16 md:py-24 bg-gray-100 dark:bg-gray-800"
>
@ -556,7 +556,7 @@ export default function ProductDevelopmentPage() {
</p>
</div>
<div className="max-w-4xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8 items-start">
{/* Contact Details */}
<div className="space-y-6">
<div className="flex items-center space-x-4">
<FaPhone
@ -601,7 +601,7 @@ export default function ProductDevelopmentPage() {
</Link>
</div>
{/* Contact Form */}
<div className="bg-white dark:bg-gray-700 p-6 rounded-lg shadow-md">
<h3 className="text-xl font-semibold font-poppins text-gray-900 dark:text-white mb-4">
Send Us Your Inquiry
@ -610,7 +610,9 @@ export default function ProductDevelopmentPage() {
</div>
</div>
</div>
</section>
</section> */}
</div>
);
}