Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main to nexus #275

Merged
merged 3 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/layout/AppLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Head from 'next/head';
import { PropsWithChildren } from 'react';

import { APP_NAME, BACKGROUND_COLOR, BACKGROUND_IMAGE, MAIN_FONT } from '../../consts/app';
import { APP_NAME, BACKGROUND_COLOR, BACKGROUND_IMAGE } from '../../consts/app';
import { Footer } from '../nav/Footer';
import { Header } from '../nav/Header';

Expand All @@ -16,7 +16,7 @@ export function AppLayout({ children }: PropsWithChildren) {
<div
style={styles.container}
id="app-content"
className={`relative flex flex-col justify-between h-full min-h-screen w-full min-w-screen ${MAIN_FONT.className}`}
className="relative flex flex-col justify-between h-full min-h-screen w-full min-w-screen"
>
<Header />
<div className="sm:px-4 mx-auto grow flex items-center max-w-screen-xl">
Expand Down
7 changes: 6 additions & 1 deletion src/consts/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import { Space_Grotesk } from 'next/font/google';

import { Color } from '../styles/Color';

export const MAIN_FONT = Space_Grotesk({ subsets: ['latin'] });
export const MAIN_FONT = Space_Grotesk({
subsets: ['latin'],
variable: '--font-main',
preload: true,
fallback: ['sans-serif'],
});
export const APP_NAME = 'Hyperlane Nexus Bridge';
export const APP_DESCRIPTION =
'Nexus is the interface for navigating the modular world. Bridge between any chains that are part of the expanding Modular universe. Built on Hyperlane.';
Expand Down
2 changes: 1 addition & 1 deletion src/features/wallet/SideBarMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function SideBarMenu({
<div className="w-full rounded-t-md bg-primary-500 py-2 px-3.5 text-white text-base font-normal tracking-wider">
Connected Wallets
</div>
<div className="my-3 px-3 space-y-3">
<div className="my-3 px-3 space-y-2">
{readyAccounts.map((acc, i) => (
<AccountSummary key={i} account={acc} />
))}
Expand Down
47 changes: 26 additions & 21 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import '@hyperlane-xyz/widgets/styles.css';

import { ErrorBoundary } from '../components/errors/ErrorBoundary';
import { AppLayout } from '../components/layout/AppLayout';
import { MAIN_FONT } from '../consts/app';
import { WarpContext } from '../context/WarpContext';
import { CosmosWalletContext } from '../features/wallet/context/CosmosWalletContext';
import { EvmWalletContext } from '../features/wallet/context/EvmWalletContext';
Expand All @@ -33,27 +34,31 @@ export default function App({ Component, pageProps }: AppProps) {
return <div></div>;
}

// Note, the font definition is required both here and in _document.tsx
// Otherwise Next.js will not load the font
return (
<ErrorBoundary>
<QueryClientProvider client={reactQueryClient}>
<WarpContext>
<EvmWalletContext>
<SolanaWalletContext>
<CosmosWalletContext>
<AppLayout>
<Component {...pageProps} />
<Analytics />
</AppLayout>
<ToastContainer
transition={Zoom}
position={toast.POSITION.BOTTOM_RIGHT}
limit={2}
/>
</CosmosWalletContext>
</SolanaWalletContext>
</EvmWalletContext>
</WarpContext>
</QueryClientProvider>
</ErrorBoundary>
<div className={`${MAIN_FONT.variable} font-sans text-black`}>
<ErrorBoundary>
<QueryClientProvider client={reactQueryClient}>
<WarpContext>
<EvmWalletContext>
<SolanaWalletContext>
<CosmosWalletContext>
<AppLayout>
<Component {...pageProps} />
<Analytics />
</AppLayout>
<ToastContainer
transition={Zoom}
position={toast.POSITION.BOTTOM_RIGHT}
limit={2}
/>
</CosmosWalletContext>
</SolanaWalletContext>
</EvmWalletContext>
</WarpContext>
</QueryClientProvider>
</ErrorBoundary>
</div>
);
}
4 changes: 2 additions & 2 deletions src/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Head, Html, Main, NextScript } from 'next/document';

import { APP_DESCRIPTION, APP_NAME, APP_URL, BRAND_COLOR } from '../consts/app';
import { APP_DESCRIPTION, APP_NAME, APP_URL, BRAND_COLOR, MAIN_FONT } from '../consts/app';

export default function Document() {
return (
Expand Down Expand Up @@ -31,7 +31,7 @@ export default function Document() {
<meta property="og:image" content={`${APP_URL}/logo.png`} />
<meta property="og:description" content={APP_DESCRIPTION} />
</Head>
<body className="text-black">
<body className={`${MAIN_FONT.variable} font-sans text-black`}>
<Main />
<NextScript />
</body>
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
fontFamily: {
sans: ['sans-serif'],
sans: ['var(--font-main)'],
serif: ['Garamond', 'serif'],
mono: ['Courier New', 'monospace'],
},
Expand Down
Loading