Delete global css file
This commit is contained in:
parent
d6d48bb6b4
commit
2bc8f0b429
|
@ -1,7 +1,7 @@
|
||||||
import type { NextPage } from "next";
|
import type { NextPage } from "next";
|
||||||
import Head from "next/head";
|
import Head from "next/head";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import LandingPage from "./landing-page";
|
import { Hero } from "../components/hero";
|
||||||
|
|
||||||
const Home: NextPage = () => {
|
const Home: NextPage = () => {
|
||||||
return (
|
return (
|
||||||
|
@ -19,7 +19,7 @@ const Home: NextPage = () => {
|
||||||
/>
|
/>
|
||||||
</Head>
|
</Head>
|
||||||
|
|
||||||
<LandingPage />
|
<Hero />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
import React from "react";
|
|
||||||
import { Hero } from "../components/hero";
|
|
||||||
|
|
||||||
const LandingPage = () => {
|
|
||||||
return <Hero />;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default LandingPage;
|
|
|
@ -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;
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user