Skip to content

Commit b1c80a2

Browse files
committed
Remove GlobalHeader from home page
1 parent 360fda4 commit b1c80a2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/components/home.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,13 @@
1414
*/
1515
import { readFileSync } from "fs";
1616
import { h } from "preact";
17-
import { GlobalHeader } from "./header";
1817

1918
// tslint:disable-next-line:variable-name
2019
export const Home = props => {
2120
let md = readFileSync(__dirname + "/../../README.md", "utf8");
2221
md = "<p>" + md.replace(/\n\n/g, "\n\n<p>");
2322
return (
2423
<div class="index">
25-
<GlobalHeader />
2624
<div class="intro flex-row">
2725
<div class="flex-cell">
2826
<div dangerouslySetInnerHTML={{ __html: md }} />

0 commit comments

Comments
 (0)