Skip to content

Commit

Permalink
chore: remove styling
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahschwartz committed Nov 16, 2024
1 parent 36b44ed commit eda3644
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 233 deletions.
1 change: 0 additions & 1 deletion code/wagmi/src/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import '@/styles/globals.css';
import type { AppProps } from 'next/app';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { WagmiProvider } from 'wagmi';
Expand Down
Binary file removed code/wagmi/src/pages/fonts/GeistMonoVF.woff
Binary file not shown.
Binary file removed code/wagmi/src/pages/fonts/GeistVF.woff
Binary file not shown.
19 changes: 3 additions & 16 deletions code/wagmi/src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import Head from 'next/head';
import localFont from 'next/font/local';
import styles from '@/styles/Home.module.css';
import { useEffect, useState } from 'react';
import { ConnectWalletTS } from '@/components/ConnectWalletTS';
import { ConnectWallet } from '@/components/ConnectWallet';
Expand All @@ -25,17 +23,6 @@ import { ReadContractTS } from '@/components/ReadContractTS';
import { WriteContract } from '@/components/WriteContract';
import { WriteContractTS } from '@/components/WriteContractTS';

const geistSans = localFont({
src: './fonts/GeistVF.woff',
variable: '--font-geist-sans',
weight: '100 900',
});
const geistMono = localFont({
src: './fonts/GeistMonoVF.woff',
variable: '--font-geist-mono',
weight: '100 900',
});

export default function Home() {
const [mounted, setMounted] = useState(false);

Expand All @@ -46,7 +33,7 @@ export default function Home() {
return (
<>
<Head>
<title>Create Next App</title>
<title>Wagmi ZKsync Demo</title>
<meta
name="description"
content="Generated by create next app"
Expand All @@ -60,8 +47,8 @@ export default function Home() {
href="/favicon.ico"
/>
</Head>
<div className={`${styles.page} ${geistSans.variable} ${geistMono.variable}`}>
<main className={styles.main}>
<div>
<main>
{mounted && (
<>
<ConnectWallet />
Expand Down
168 changes: 0 additions & 168 deletions code/wagmi/src/styles/Home.module.css

This file was deleted.

42 changes: 0 additions & 42 deletions code/wagmi/src/styles/globals.css

This file was deleted.

6 changes: 0 additions & 6 deletions tests/wagmi.spec.ts

This file was deleted.

0 comments on commit eda3644

Please sign in to comment.