diff --git a/src/components/App.tsx b/src/components/App.tsx
deleted file mode 100644
index a772378..0000000
--- a/src/components/App.tsx
+++ /dev/null
@@ -1,99 +0,0 @@
-import FrozenHead from 'react-frozenhead'
-import React from 'react'
-import { RouteHandler } from 'react-router'
-import ga from 'react-google-analytics'
-import SupportStore from '../stores/SupportStore'
-import ErrorPage from './ErrorPage'
-import Bootstrap from './Bootstrap'
-
-if (process.env.GA_ACCESS_TOKEN) {
- ga('create', process.env.GA_ACCESS_TOKEN, 'auto')
- ga('send', 'pageview')
-}
-
-export default class App extends React.Component {
- constructor() {
- super()
- this.state = SupportStore.getState()
-
- this._onChange = () => {
- this.setState(SupportStore.getState())
- }
- }
-
- componentDidMount() {
- SupportStore.listen(this._onChange)
- }
-
- componentWillUnmount() {
- SupportStore.unlisten(this._onChange)
- }
-
- render() {
- return (
-
-
-
-
-
-
-
-
-
- FilePizza - Your files, delivered.
-
-
-
-
-
-
-
-
- {this.state.isSupported ? : }
-
-
-
- {process.env.GA_ACCESS_TOKEN ? : }
-
-
- )
- }
-}
diff --git a/src/components/Bootstrap.tsx b/src/components/Bootstrap.tsx
deleted file mode 100644
index 7e48f35..0000000
--- a/src/components/Bootstrap.tsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import React from 'react'
-
-export default class Bootstrap extends React.Component {
- render() {
- return (
-
- )
- }
-}
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
new file mode 100644
index 0000000..b0d5870
--- /dev/null
+++ b/src/components/Footer.tsx
@@ -0,0 +1,36 @@
+import React from 'react'
+
+export const Footer: React.FC = () => (
+
+)
+
+export default Footer
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx
new file mode 100644
index 0000000..9c1f167
--- /dev/null
+++ b/src/pages/_app.tsx
@@ -0,0 +1,29 @@
+import React from 'react'
+import type { AppProps } from 'next/app'
+import Head from 'next/head'
+import Footer from '../components/Footer'
+
+const App: React.FC = ({ Component, pageProps }: AppProps) => (
+ <>
+
+
+
+
+
+
+
+
+ FilePizza • Your files, delivered.
+
+
+
+
+
+
+ >
+)
+
+export default App