diff --git a/client/pages/HomePage.tsx b/client/pages/HomePage.tsx index 3f42574..2fe676d 100644 --- a/client/pages/HomePage.tsx +++ b/client/pages/HomePage.tsx @@ -14,7 +14,6 @@ import CoverCard from '../components/CoverCard'; import Pattern from '../constants/Pattern'; import useDocumentTitle from '../hooks/useDocumentTitle'; import Layout from '../layouts/Layout'; -import MadeOf from './MadeOf'; const HomePage = () => { useDocumentTitle('CSS Layout'); @@ -253,8 +252,6 @@ const HomePage = () => { - - ); diff --git a/client/pages/MadeOf.tsx b/client/pages/MadeOf.tsx deleted file mode 100644 index 24bc95f..0000000 --- a/client/pages/MadeOf.tsx +++ /dev/null @@ -1,55 +0,0 @@ -/** - * A collection of popular layouts and patterns made with CSS (https://csslayout.io) - * (c) 2019 - 2020 Nguyen Huu Phuoc - */ - -import React from 'react'; - -import SampleCode from '../components/SampleCode'; - -const MadeOf: React.FC<{}> = () => { - return ( -
-
- How it's made -
-
- lint(r)) /* tslint */ - .then((r) => lazyLoad(r)) /* @loadable/component */ - .then((r) => optimizeAndBundle(r)) /* webpack */ - .then((r) => exportHtml(r)) /* react-snap */ - .then((r) => deploy(r)) /* Netlify */ - .then((r) => { - expect(r).is(scalableCode); - expect(r).is(superFastWebsite); - expect(r).is(seoFriendly); - }) - .finally(() => { - /* Give me 1 Github star 🎉 */ - }); -`} - /> -
-
- ); -}; - -export default MadeOf;