From 327db25f705c804dbb34d495e5d4e1c8904cb256 Mon Sep 17 00:00:00 2001 From: bill bittner Date: Wed, 8 Aug 2018 09:24:33 -0700 Subject: [PATCH] removed custom about page --- client_custom/src/pages/AboutPage/index.jsx | 29 --------------------- 1 file changed, 29 deletions(-) delete mode 100644 client_custom/src/pages/AboutPage/index.jsx diff --git a/client_custom/src/pages/AboutPage/index.jsx b/client_custom/src/pages/AboutPage/index.jsx deleted file mode 100644 index 94c453e5..00000000 --- a/client_custom/src/pages/AboutPage/index.jsx +++ /dev/null @@ -1,29 +0,0 @@ -import React from 'react'; -import PageLayout from '@components/PageLayout'; -import HorizontalSplit from '@components/HorizontalSplit'; - -class AboutPage extends React.Component { - render () { - return ( - - -

Welcome to my custom About page!

- - } - rightSide={ -
-

To create your own custom components that will override Spee.ch's defaults, place them in the client_custom folder and Spee.ch will do the rest!

-
- } - /> -
- ); - } -} - -export default AboutPage;