\n \n \n We Creates a potential marketplace for People where business can\n directly meet users. It also provides an interoperable access to\n user data across different industries. Users will be able to use\n the Service as a secure single-sign on provider and move their\n data across different applications.\n
\n \n \n \n Get Started\n
\n \n
\n);\n\nexport default BannerSection;\n","import React, { ReactElement, useState } from 'react';\nimport { graphql, Link } from 'gatsby';\nimport { Layout } from '../components/common';\nimport { Card, Col, Container, Row } from 'react-bootstrap';\nimport ContentHero from '../components/common/contentSections/ContentHero';\nimport BannerSection from '../components/common/contentSections/BannerSection';\nimport styled from '@emotion/styled';\nimport { AnchorHTMLAttributes } from 'react';\nimport { IPost, ITag } from '../utils/entities';\n\nexport const Excerpt = styled(Card.Text)`\n display: block;\n display: -webkit-box;\n max-width: 100%;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n`;\n\ninterface IBlog {\n data: {\n allGhostPost: {\n edges: {\n node: IPost;\n }[];\n };\n allInternalTags: {\n edges: {\n node: ITag;\n }[];\n };\n allPublicTags: {\n edges: {\n node: ITag;\n }[];\n };\n };\n location: {\n pathname: string;\n };\n pageContext: {\n previousPagePath: string;\n nextPagePath: string;\n humanPageNumber: number;\n numberOfPages: number;\n };\n}\n\nexport const LinkWrapper = styled(Link)`\n text-decoration: none;\n :hover {\n text-decoration: none;\n }\n`;\n\ninterface ActiveLink extends AnchorHTMLAttributes