2023-08-22 16:23:24 +00:00
|
|
|
import Head from 'next/head';
|
2022-11-08 07:23:38 +00:00
|
|
|
import { ClientRouter } from './client-router';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Next only handles this single index page, react-router takes over after the page
|
|
|
|
* is served to the browser. This is because we can't run next server via ipfs and
|
|
|
|
* have to serve a static site via next export
|
|
|
|
*/
|
|
|
|
export default function Index() {
|
2023-08-22 16:23:24 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta charSet="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta name="theme-color" content="#000000" />
|
2023-09-06 20:51:41 +00:00
|
|
|
<meta name="description" content="Vega Protocol - Console" />
|
2023-08-22 16:23:24 +00:00
|
|
|
<meta name="og:type" content="website" />
|
|
|
|
<meta name="og:url" content="https://console.vega.xyz/" />
|
|
|
|
<meta name="og:title" content="Vega Protocol - Console" />
|
|
|
|
<meta name="og:site_name" content="Vega Protocol - Console" />
|
2023-09-20 06:54:07 +00:00
|
|
|
<meta name="og:image" content="./favicon.ico" />
|
|
|
|
<meta name="twitter:card" content="./favicon.ico" />
|
2023-08-22 16:23:24 +00:00
|
|
|
<meta name="twitter:title" content="Vega Protocol - Console" />
|
|
|
|
<meta name="twitter:description" content="Vega Protocol - Console" />
|
2023-09-20 06:54:07 +00:00
|
|
|
<meta name="twitter:image" content="./favicon.ico" />
|
2023-08-22 16:23:24 +00:00
|
|
|
<meta name="twitter:image:alt" content="VEGA logo" />
|
|
|
|
<meta name="twitter:site" content="@vegaprotocol" />
|
|
|
|
</Head>
|
|
|
|
<ClientRouter />
|
|
|
|
</>
|
|
|
|
);
|
2022-02-11 13:56:28 +00:00
|
|
|
}
|