Skip to content

Commit

Permalink
Merge pull request #3 from push-protocol/f_push_scan
Browse files Browse the repository at this point in the history
Fixed the Font style issue
abhishek-01k authored Nov 7, 2024

Verified

This commit was signed with the committer’s verified signature.
scala-steward Scala Steward
2 parents 608128f + 9f36431 commit 1b2c71a
Showing 5 changed files with 17 additions and 54 deletions.
2 changes: 0 additions & 2 deletions components/Home/SearchBar.tsx
Original file line number Diff line number Diff line change
@@ -67,8 +67,6 @@ export default function SearchBar() {
}
}, [debouncedQuery, data, isLoading]);

console.log('debouncedQuery', debouncedQuery, query);

return (
<TextInput
placeholder="Search by Address, Tx Hash, Block Hash"
6 changes: 1 addition & 5 deletions components/Navbar/index.tsx
Original file line number Diff line number Diff line change
@@ -39,14 +39,10 @@ export default function Navbar() {
flexDirection="column"
justifyContent="space-between"
alignItems="center"
alignSelf="stretch"
alignSelf="center"
padding="spacing-sm spacing-none"
maxWidth="1100px"
width="calc(100% - (var(--spacing-sm) * 2))"
css={css`
flex: initial;
margin: 0 auto;
`}
gap="spacing-xs"
>
<Box
18 changes: 0 additions & 18 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -3,14 +3,12 @@ import React from 'react';

// import localFont from '@next/font/local';
import type { AppProps } from 'next/app';
import Head from 'next/head';

// External Library imports
import { ToastContainer } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';

// Internal Components imports
import '../styles/globals.css';
import Theme from '../theme/Theme';
import { ThemeProvider as GlobalThemeProvider } from '../contexts/ThemeContext';
import { DataProvider } from '../contexts/DataContext';
@@ -24,22 +22,6 @@ export default function App({ Component, pageProps }: AppProps) {
<GlobalThemeProvider>
<Theme>
<DataProvider>
<Head>
<link rel="shortcut icon" href='./static/push.png'/>
<meta
name="description"
content="push protocol analytics dashboard"
/>
<meta
name="keywords"
content="Push,Communication,Notification,Chat"
/>
<meta name="author" content="Push Protocol" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
</Head>
<Component {...pageProps} />
</DataProvider>
</Theme>
17 changes: 16 additions & 1 deletion pages/_document.js
Original file line number Diff line number Diff line change
@@ -3,7 +3,22 @@ import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
return (
<Html lang='en'>
<Head />
<Head>
<link rel="shortcut icon" href='./static/push.png' />
<meta
name="description"
content="push protocol analytics dashboard"
/>
<meta
name="keywords"
content="Push,Communication,Notification,Chat"
/>
<meta name="author" content="Push Protocol" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
</Head>
<body>
<Main />
<NextScript />
28 changes: 0 additions & 28 deletions styles/globals.css

This file was deleted.

0 comments on commit 1b2c71a

Please sign in to comment.