"use client"; import { useTranslation } from "react-i18next"; import Card from "@/lib/components/ui/Card"; import { ContactForm } from "./components"; import { FooterSection, HomeHeader, HomeSection, TestimonialsSection, } from "../(home)/components"; const ContactSalesPage = (): JSX.Element => { const { t } = useTranslation("contact"); return (

{t("speak_to")}{" "} {t("sales_team")}

); }; export default ContactSalesPage;