+) {
+ res.status(200).json({ name: 'John Doe' })
+}
diff --git a/web/pages/index.tsx b/web/pages/index.tsx
new file mode 100644
index 00000000..90de79ba
--- /dev/null
+++ b/web/pages/index.tsx
@@ -0,0 +1,18 @@
+import type { NextPage } from 'next'
+import Head from 'next/head'
+
+const Home: NextPage = () => {
+ return (
+
+
+
Mantic Markets
+
+
+
+
+ Welcome to Mantic Markets
+
+ )
+}
+
+export default Home
diff --git a/web/public/favicon.ico b/web/public/favicon.ico
new file mode 100644
index 00000000..718d6fea
Binary files /dev/null and b/web/public/favicon.ico differ
diff --git a/web/styles/globals.css b/web/styles/globals.css
new file mode 100644
index 00000000..e5e2dcc2
--- /dev/null
+++ b/web/styles/globals.css
@@ -0,0 +1,16 @@
+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;
+}
+
+a {
+ color: inherit;
+ text-decoration: none;
+}
+
+* {
+ box-sizing: border-box;
+}
diff --git a/web/tsconfig.json b/web/tsconfig.json
new file mode 100644
index 00000000..99710e85
--- /dev/null
+++ b/web/tsconfig.json
@@ -0,0 +1,20 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "incremental": true
+ },
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
+ "exclude": ["node_modules"]
+}