diff --git a/src/app.js b/src/app.js
deleted file mode 100644
index e4e43e0..0000000
--- a/src/app.js
+++ /dev/null
@@ -1,30 +0,0 @@
-import {h} from 'preact'
-import {useState} from 'preact/hooks'
-import {Router} from 'preact-router'
-
-import Editor from './routes/editor'
-import Post from './routes/post'
-
-const App = () => {
- const [markdown, setMarkdown] = useState('')
-
- return (
-
-
-
-
-
- )
-}
-
-export default App
diff --git a/src/index.js b/src/index.js
index dd3fcdd..1a41a9f 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,6 +1,33 @@
+import {h} from 'preact'
+import {useState} from 'preact/hooks'
+import {Router} from 'preact-router'
+
+import Editor from './routes/editor'
+import Post from './routes/post'
+
import './style/typography.css'
import './style'
-import App from './app'
+const App = () => {
+ const [markdown, setMarkdown] = useState('')
+
+ return (
+
+
+
+
+
+ )
+}
export default App
diff --git a/src/manifest.json b/src/manifest.json
deleted file mode 100644
index 4eb3f70..0000000
--- a/src/manifest.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "name": "huge-link",
- "short_name": "huge-link",
- "start_url": "/",
- "display": "standalone",
- "orientation": "portrait",
- "background_color": "#fff",
- "theme_color": "#673ab8",
- "icons": [
- {
- "src": "/assets/icons/android-chrome-192x192.png",
- "type": "image/png",
- "sizes": "192x192"
- },
- {
- "src": "/assets/icons/android-chrome-512x512.png",
- "type": "image/png",
- "sizes": "512x512"
- }
- ]
-}
diff --git a/src/sw.js b/src/sw.js
deleted file mode 100644
index 99a0990..0000000
--- a/src/sw.js
+++ /dev/null
@@ -1,4 +0,0 @@
-import { getFiles, setupPrecaching, setupRouting } from 'preact-cli/sw/'
-
-setupRouting()
-setupPrecaching(getFiles())
diff --git a/src/template.html b/src/template.html
index 5b07f36..5b2cf4b 100644
--- a/src/template.html
+++ b/src/template.html
@@ -4,9 +4,6 @@
<% preact.title %>
-
-
-
<% preact.headEnd %>