diff --git a/.env b/.env index 9bcb865..0ace994 100644 --- a/.env +++ b/.env @@ -1,3 +1,3 @@ -NEXT_PUBLIC_API_URL = http://localhost:8000 +NEXT_PUBLIC_DAT_URL = https://d2v1fiwobg9w6.cloudfront.net NEXT_PUBLIC_GOOGLE_ANALYTICS_CONFIG = G-8GN39Z428L diff --git a/.vscode/settings.json b/.vscode/settings.json index b7f2744..3492f91 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,6 @@ { - "typescript.enablePromptUseWorkspaceTsdk": true, - "editor.wordWrap": "wordWrapColumn", - "editor.wordWrapColumn": 140, - "typescript.tsdk": "node_modules/typescript/lib" -} \ No newline at end of file + "typescript.enablePromptUseWorkspaceTsdk": true, + "editor.wordWrap": "wordWrapColumn", + "editor.wordWrapColumn": 140, + "typescript.tsdk": "node_modules/typescript/lib" +} diff --git a/app/layout.tsx b/app/layout.tsx index f7b3ea7..e8a7c74 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,31 +1,24 @@ import { ChakraProvider } from '@chakra-ui/react'; -import theme from "../styles/theme"; -import { Providers } from "./providers"; +import theme from '../styles/theme'; +import { Providers } from './providers'; export const metadata = { title: 'Hyperliquid Stats', description: 'Explore the Hyperliquid protocol’s statistics', -} - -export default function RootLayout({ - children, -}: { - children: React.ReactNode -}) { +}; +export default function RootLayout({ children }: { children: React.ReactNode }) { return ( - + - - - - + + + + - - {children} - + {children} - ) + ); } diff --git a/app/page.tsx b/app/page.tsx index 0676fcd..704b9ec 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -8,7 +8,6 @@ const Home: NextPage = () => { <>
-