From 4b146d2b8f1eaa370be246e7f6c84080cce45145 Mon Sep 17 00:00:00 2001 From: Norbert Melzer Date: Sun, 2 Jul 2023 23:24:35 +0200 Subject: [PATCH] refactor: use author page for about --- src/components/layout.tsx | 2 +- src/pages/about.tsx | 15 --------------- 2 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 src/pages/about.tsx diff --git a/src/components/layout.tsx b/src/components/layout.tsx index 9914fec9..59e267b9 100644 --- a/src/components/layout.tsx +++ b/src/components/layout.tsx @@ -31,7 +31,7 @@ export const Layout = ({ className, pageTitle, children }: LayoutProps) => { Tags
  • - About + About
  • diff --git a/src/pages/about.tsx b/src/pages/about.tsx deleted file mode 100644 index a6cc4855..00000000 --- a/src/pages/about.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import * as React from "react"; - -import { Layout, Seo } from "~components"; - -const AboutPage = () => ( - -

    - Hi there! I'm the proud creator of this site, which I built with Gatsby. -

    -
    -); - -export const Head = () => ; - -export default AboutPage;