From 94071d7ce16c56641d67d488e2bac6be84ffe731 Mon Sep 17 00:00:00 2001 From: 简律纯 Date: Fri, 3 Nov 2023 21:17:06 +0800 Subject: chore: delete useless files --- examples/with-gatsby/apps/web/src/pages/404.tsx | 49 ----------------------- examples/with-gatsby/apps/web/src/pages/index.tsx | 16 -------- 2 files changed, 65 deletions(-) delete mode 100644 examples/with-gatsby/apps/web/src/pages/404.tsx delete mode 100644 examples/with-gatsby/apps/web/src/pages/index.tsx (limited to 'examples/with-gatsby/apps/web/src') diff --git a/examples/with-gatsby/apps/web/src/pages/404.tsx b/examples/with-gatsby/apps/web/src/pages/404.tsx deleted file mode 100644 index 68a3a72..0000000 --- a/examples/with-gatsby/apps/web/src/pages/404.tsx +++ /dev/null @@ -1,49 +0,0 @@ -import * as React from "react"; -import { Link, HeadFC, PageProps } from "gatsby"; - -const pageStyles = { - color: "#232129", - padding: "96px", - fontFamily: "-apple-system, Roboto, sans-serif, serif", -}; -const headingStyles = { - marginTop: 0, - marginBottom: 64, - maxWidth: 320, -}; - -const paragraphStyles = { - marginBottom: 48, -}; -const codeStyles = { - color: "#8A6534", - padding: 4, - backgroundColor: "#FFF4DB", - fontSize: "1.25rem", - borderRadius: 4, -}; - -const NotFoundPage: React.FC = () => { - return ( -
-

Page not found

-

- Sorry 😔, we couldn’t find what you were looking for. -
- {process.env.NODE_ENV === "development" ? ( - <> -
- Try creating a page in src/pages/. -
- - ) : null} -
- Go home. -

-
- ); -}; - -export default NotFoundPage; - -export const Head: HeadFC = () => Not found; diff --git a/examples/with-gatsby/apps/web/src/pages/index.tsx b/examples/with-gatsby/apps/web/src/pages/index.tsx deleted file mode 100644 index 30844d6..0000000 --- a/examples/with-gatsby/apps/web/src/pages/index.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import * as React from "react"; -import type { HeadFC, PageProps } from "gatsby"; -import { Button } from "ui"; - -const IndexPage: React.FC = () => { - return ( -
-

Web

-
- ); -}; - -export default IndexPage; - -export const Head: HeadFC = () => Home Page; -- cgit v1.2.3-70-g09d2