import CounterUp from "../components/elements/CounterUp" import VideoPopup from "../components/elements/VidepPopup" import Layout from "../components/layout/Layout" import BrandSlider2 from "../components/slider/BrandSlider2" import Link from "next/link" import MermsRecentBlog from "../components/sections/MermsRecentBlog"; import MermsWhyChooseUs from "../components/sections/MermsWhyChooseUs"; import MermsDedicatedTeam from "../components/sections/MermsDedicatedTeam"; import MermsAboutFeautures from "../components/sections/MermsAboutFeautures"; import { useTranslations } from "next-intl"; export default function Home() { const t = useTranslations("AboutPage") return ( <>

{t("title")}

{t("description")}

{/* ABOUT-2 IMAGES */}
{/* IMAGES-1 */}
{/* IMAGE-1 */}
about-image
{/* IMAGE-2 */}
about-image
{/* END IMAGES-1 */} {/* IMAGES-2 */}
{/* IMAGE-3 */}
about-image
{/* TEXT */}
{/* Icon */}

{t("quote")}

{/* Author */} {/*

Charlie Cheever CEO & CO-FOUNDER

*/}
{/* IMAGE-4 */}
about-image
{/* End row */}
{/* END IMAGES-2 */}
{/* End row */}
{/* END ABOUT-2 IMAGES */}
{/* END ABOUT-2 */}

) } export async function getStaticProps({ locale }) { const { getMessages } = await import('../utils/getMessages') return { props: { locale, messages: await getMessages(locale), } } }