import React from 'react'; import type { ReactElement } from 'react'; import Head from 'next/head'; import HeaderPublic from '../components/HeaderPublic'; import FooterPublic from '../components/FooterPublic'; export default function About() { return ( <> About | MFT Self Help Group

About Us

MFT Self Help Group is a community-based financial cooperative that provides members with saving, lending, and welfare services.

); } About.getLayout = function getLayout(page: ReactElement) { return page; };