diff --git a/web/pages/_document.tsx b/web/pages/_document.tsx
new file mode 100644
index 00000000..86de0544
--- /dev/null
+++ b/web/pages/_document.tsx
@@ -0,0 +1,71 @@
+import { Html, Head, Main, NextScript } from 'next/document'
+
+export default function Document() {
+ return (
+
+
+ Mantic Markets
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
diff --git a/web/pages/index.tsx b/web/pages/index.tsx
index b38b7ab5..2bde6f17 100644
--- a/web/pages/index.tsx
+++ b/web/pages/index.tsx
@@ -1,55 +1,11 @@
import React from 'react'
import type { NextPage } from 'next'
-import Head from 'next/head'
import { Hero } from '../components/hero'
const Home: NextPage = () => {
- return (
-
-
-
Mantic Markets
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- )
+ return
}
export default Home