diff --git a/web/pages/index.tsx b/web/pages/index.tsx index 61610a78..8bb1ac5d 100644 --- a/web/pages/index.tsx +++ b/web/pages/index.tsx @@ -1,7 +1,7 @@ import type { NextPage } from "next"; import Head from "next/head"; import React from "react"; -import LandingPage from "./landing-page"; +import { Hero } from "../components/hero"; const Home: NextPage = () => { return ( @@ -19,7 +19,7 @@ const Home: NextPage = () => { /> - + ); }; diff --git a/web/pages/landing-page.tsx b/web/pages/landing-page.tsx deleted file mode 100644 index d84e7230..00000000 --- a/web/pages/landing-page.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import React from "react"; -import { Hero } from "../components/hero"; - -const LandingPage = () => { - return ; -}; - -export default LandingPage; diff --git a/web/styles/globals.css b/web/styles/globals.css deleted file mode 100644 index d248790c..00000000 --- a/web/styles/globals.css +++ /dev/null @@ -1,17 +0,0 @@ -html, -body { - padding: 0; - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, - Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; - min-height: 100%; -} - -a { - color: inherit; - text-decoration: none; -} - -* { - box-sizing: border-box; -}