mars-v2-frontend/src/pages/_document.tsx
Linkie Link 3c280518e8
Morph summary (#763)
* fix: fixed mobile issues with SVGs

* feat: first morphing AccountDetails

* tidy: composition refresh

* tidy: fine adjusting

* fix: svg fixes

* feat: updated summary structure

* feat: overall layout adjustments

* fix: fixed svg adjustments

* feat: finished AccountSummary update

* fix: fixed build

* tidy: refactor

* fix: fix enourmous APYs

* fix: don’t abbreviate APYs

* tidy: console.log

* fix: fix borrow Rate sorting

* fix: fixed scrollbars

* fix: hide scrollbars

* fix: resolved feedback

* fix: amount not size

* feat: only show credit account number outside of modals

* fix: added missing Strategies to PortfolioAccount

* fix: save some space
2024-02-06 10:05:42 +01:00

18 lines
615 B
TypeScript

import { Head, Html, Main, NextScript } from 'next/document'
export default function Document() {
return (
<Html className='p-0 m-0 scrollbar-hide' lang='en'>
<Head>
<script defer src='/charting_library/charting_library.standalone.js' />
<script defer src='/datafeeds/udf/dist/bundle.js' />
<script defer src='https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.5.4/socket.io.js' />
</Head>
<body className='p-0 m-0 overflow-x-hidden font-sans text-white cursor-default bg-body scrollbar-hide'>
<Main />
<NextScript />
</body>
</Html>
)
}