Delete global css file

This commit is contained in:
jahooma 2021-12-02 17:44:03 -06:00
parent d6d48bb6b4
commit 2bc8f0b429
3 changed files with 2 additions and 27 deletions

View File

@ -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 = () => {
/>
</Head>
<LandingPage />
<Hero />
</div>
);
};

View File

@ -1,8 +0,0 @@
import React from "react";
import { Hero } from "../components/hero";
const LandingPage = () => {
return <Hero />;
};
export default LandingPage;

View File

@ -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;
}