import type { Metadata } from "next";
import Footer from "@/components/common/Footer";
import Header from "@/components/common/Header";
import ContactDetailsSection from "@/components/contact/ContactDetailsSection";
import HeroSection from "@/components/contact/HeroSection";
import MapSection from "@/components/contact/MapSection";

export const metadata: Metadata = {
  title: "Contact Us",
  description:
    "Get in touch with the Sasico team for product consultation, support, partnerships, or project inquiries.",
};

export default async function Page() {
  return (
    <div className="wrapper main-sec6 v">
      <Header useThemeLogos />
      <HeroSection />
      <ContactDetailsSection />
      <MapSection />
      <Footer />
    </div>
  );
}
