Vagr9K/gatsby-material-starter

View on GitHub
themes/material/src/pages/about.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import * as React from "react";
import { Helmet } from "react-helmet";

import { useConfig } from "gatsby-theme-advanced";

import Layout from "../layouts";

const AboutPage = (): JSX.Element => {
  const config = useConfig();

  return (
    <Layout>
      <Helmet title={`About | ${config.website.title}`} />
    </Layout>
  );
};

export default AboutPage;