{"version":3,"file":"component---src-pages-about-tsx-5a6cac097e85b36b10ae.js","mappings":"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","sources":["webpack://website-v2/./src/components/Paragraph.tsx","webpack://website-v2/./src/components/SEO.tsx","webpack://website-v2/./src/images/profile.png","webpack://website-v2/./src/images/house.png","webpack://website-v2/./src/pages/about.tsx"],"sourcesContent":["import React from \"react\";\n\ninterface ParagraphProps {\n title: string;\n children: any;\n}\n\nconst Paragraph: React.FC = ({ title, children }) => {\n return (\n <>\n

{title}

\n

{children}

\n \n );\n};\n\nexport default React.memo(Paragraph);\n","import React from \"react\";\nimport { Helmet } from \"react-helmet\";\nimport { useStaticQuery, graphql } from \"gatsby\";\nimport { ENV_GATSBY_SITE_URL } from \"../utils/secrets\";\n\ninterface Props {\n title?: string;\n keywords?: string[];\n pageUrl: string;\n description?: string;\n lang?: string;\n meta?: [];\n imageUrl?: string;\n isArticle?: boolean;\n author?: string;\n useSiteUrlForImage?: boolean;\n richData?: { [key: string]: any };\n}\n\nconst SEO: React.FC = (props: Props) => {\n const {\n title,\n description,\n lang,\n meta,\n pageUrl,\n imageUrl,\n isArticle = false,\n author,\n useSiteUrlForImage = true,\n richData,\n } = props;\n\n const { site } = useStaticQuery(\n graphql`\n query {\n site {\n siteMetadata {\n siteName\n description\n keywords\n author\n facebookAppId\n twitterHandle\n siteUrl\n }\n }\n }\n `\n );\n\n const metaTitle = title || site.siteMetadata.siteName;\n const metaDescription = description || site.siteMetadata.description;\n\n let keywords = props.keywords;\n if (!keywords || (Array.isArray(keywords) && keywords.length === 0)) {\n keywords = site.siteMetadata.keywords;\n }\n\n const metaKeywords = Array.isArray(keywords) ? keywords.join(\", \") : keywords; // keywords is either array or string\n\n const metaPageUrl = ENV_GATSBY_SITE_URL + pageUrl;\n\n const facebookTags = [\n {\n property: `og:url`,\n content: metaPageUrl,\n },\n {\n property: `og:site_name`,\n content: site.siteMetadata.siteName,\n },\n {\n property: `og:title`,\n content: metaTitle,\n },\n {\n property: `og:description`,\n content: metaDescription,\n },\n // {\n // property: `og:image`,\n // content: metaImageUrl,\n // },\n {\n property: `og:type`,\n content: isArticle ? \"article\" : \"website\",\n },\n {\n property: `og:article:author`,\n content: author,\n },\n {\n property: `og:locale`,\n content: lang,\n },\n {\n property: `fb:app_id`,\n content: site.siteMetadata.facebookAppId,\n },\n ];\n\n const twitterTags = [\n {\n name: `twitter:card`,\n content: `summary`,\n },\n {\n name: `twitter:site`,\n content: site.siteMetadata.twitterHandle,\n },\n {\n name: `twitter:site:id`,\n content: site.siteMetadata.twitterId,\n },\n {\n name: `twitter:creator`,\n content: author,\n },\n {\n name: `twitter:title`,\n content: metaTitle,\n },\n {\n name: `twitter:description`,\n content: metaDescription,\n },\n // {\n // name: `twitter:image`,\n // content: metaImageUrl,\n // },\n // {\n // name: `twitter:image:src`,\n // content: metaImageUrl,\n // },\n ];\n\n const pinterestTags = [\n {\n name: `article:author`,\n content: author,\n },\n ];\n\n const allMeta = [\n {\n name: \"description\",\n content: metaDescription,\n },\n {\n name: \"keywords\",\n content: metaKeywords,\n },\n ...facebookTags,\n ...twitterTags,\n ...pinterestTags,\n ].filter(tag => !!tag.content);\n\n return (\n \n {!!richData && (\n \n )}\n \n );\n};\n\nSEO.defaultProps = {\n lang: `en`,\n meta: [],\n description: ``,\n};\n\nexport default React.memo(SEO);","export default __webpack_public_path__ + \"static/profile-b7e98288695c5cb882f44a3bf50217e3.png\";","export default __webpack_public_path__ + \"static/house-820f5e6a4cd63a02269c1e68d3be67ee.png\";","import * as React from \"react\";\nimport PageWrapper from \"../components/PageWrapper\";\nimport { ROUTE_LINKS } from \"../utils/routes\";\nimport ProfilePic from \"../images/profile.png\";\nimport HousePic from \"../images/house.png\";\nimport Paragraph from \"../components/Paragraph\";\nimport SEO from \"../components/SEO\";\n\nconst AboutUs: React.FC = () => {\n return (\n \n \n
\n
\n
\n \n There are over 48 million rental homes in the United States 35% of\n Americans rent homes.\n
\n The average tenant screening takes 3-5 business days\n
\n \n Matrix is a tenant analysis fintech platform that is changing the\n landscape of the growing, $500 Billion rental housing market. Our\n proprietary scoring model called MAIA (Matrix Asset & Income\n Analysis) produces a more thorough, inclusive tenant scoring that\n allows landlords and property managers to underwrite and approve\n tenants in less than 15 minutes, particularly in the area of\n affordable housing.\n \n
\n
\n \"House\"\n
\n
\n
\n

Our Team

\n \n

Sipho Simela

\n
CEO/ Founder
\n
\n
\n
\n );\n};\n\nexport default React.memo(AboutUs);\n"],"names":["Paragraph","title","children","className","React","SEO","props","description","lang","pageUrl","meta","imageUrl","isArticle","author","richData","useSiteUrlForImage","site","useStaticQuery","metaTitle","siteMetadata","siteName","metaDescription","keywords","Array","isArray","length","metaKeywords","join","facebookTags","property","content","ENV_GATSBY_SITE_URL","facebookAppId","twitterTags","name","twitterHandle","twitterId","allMeta","filter","tag","htmlAttributes","siteLanguage","type","JSON","stringify","defaultProps","AboutUs","PageWrapper","path","ROUTE_LINKS","src","HousePic","alt","ProfilePic"],"sourceRoot":""}