modmapper-web/pages/index.tsx

23 lines
532 B
TypeScript
Raw Normal View History

import type { NextPage } from "next";
import Head from "next/head";
import "mapbox-gl/dist/mapbox-gl.css";
import Map from "../components/Map";
2022-01-14 04:24:18 +00:00
const Home: NextPage = () => {
return (
<>
2022-01-14 04:24:18 +00:00
<Head>
2022-01-15 04:27:29 +00:00
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Modmapper</title>
<meta name="description" content="Map of Skyrim mods" />
2022-01-14 04:24:18 +00:00
<link rel="icon" href="/favicon.ico" />
</Head>
<Map />
</>
);
};
2022-01-14 04:24:18 +00:00
export default Home;