import type { Metadata } from "next";
import SharedHeader from "@/components/shared/SharedHeader";
import ContactHero from "@/components/contact/ContactHero";
import ContactSection from "@/components/contact/ContactSection";
import MapSection from "@/components/contact/MapSection";
import Footer from "@/components/shared/Footer";

export const metadata: Metadata = {
  title: "Contact",
  description:
    "Get in touch with us for IT solutions, support, or partnership inquiries.",
};

export default function Contact() {
  return (
    <>
      <SharedHeader />
      <ContactHero />
      <ContactSection />
      <MapSection />
      <Footer />
    </>
  );
}
