2022-02-11 13:56:28 +00:00
|
|
|
import { AppProps } from 'next/app';
|
|
|
|
import Head from 'next/head';
|
2022-02-23 14:49:24 +00:00
|
|
|
//import './styles.css';
|
|
|
|
import 'tailwindcss/tailwind.css';
|
2022-02-17 05:08:17 +00:00
|
|
|
import { Navbar } from '../components/navbar';
|
2022-02-11 13:56:28 +00:00
|
|
|
|
2022-02-17 05:03:46 +00:00
|
|
|
function VegaTradingApp({ Component, pageProps }: AppProps) {
|
2022-02-11 13:56:28 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Head>
|
|
|
|
<title>Welcome to trading!</title>
|
|
|
|
</Head>
|
2022-02-17 05:08:17 +00:00
|
|
|
<Navbar />
|
2022-02-11 13:56:28 +00:00
|
|
|
<main className="app">
|
|
|
|
<Component {...pageProps} />
|
|
|
|
</main>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-02-17 05:03:46 +00:00
|
|
|
export default VegaTradingApp;
|