Skip to content

Commit

Permalink
update home and readme text 3
Browse files Browse the repository at this point in the history
  • Loading branch information
mozrt2 committed Dec 3, 2023
1 parent ef3ffcb commit 0f20bbc
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 13 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ An open repository of EVM-compatible wallets.

# Contribute

Contribute data on wallets that haven't been added to walletbeat yet or update existing data. Simply adjust the [data.ts](https://github.com/fluidkey/walletbeat/blob/main/src/data/data.ts) file and create a pull request. Pull requests that include screenshots confirming the existence / non-existence of a feature will be merged faster.
Contribute data on wallets that haven't been added to walletbeat yet or update existing data. Simply adjust the [data.ts](https://github.com/fluidkey/walletbeat/blob/main/src/data/data.ts) file and create a pull request. Pull requests that include screenshots confirming the existence / non-existence of a feature will be merged faster.

Suggestions of additional features to benchmark are also welcome. All features benchmarked should ideally be booleans (i.e. is available / not available) for maintainability.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function RootLayout({ children }: { children: React.ReactNode }):
return (
<html lang="en">
<head>
<PlausibleProvider domain="your.domain" />
<PlausibleProvider domain="walletbeat.fyi" />
</head>
<body className={workSans.className}>
<ThemeRegistry>{children}</ThemeRegistry>
Expand Down
27 changes: 16 additions & 11 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import { Box, Button, Typography } from '@mui/material';
import ComparisonTable from '@/components/ui/organisms/Table';
import Link from 'next/link';

export default function Home(): JSX.Element {
return (
Expand All @@ -14,17 +15,21 @@ export default function Home(): JSX.Element {
</Typography>
<ComparisonTable />
<Box my={6}>
<Button
variant="outlined"
color="inherit"
sx={{
paddingY: '3px',
paddingX: '12px',
textTransform: 'none',
}}
>
Contribute
</Button>
<Link href="https://github.com/fluidkey/walletbeat" target="_blank">
<Box color="text.primary">
<Button
variant="outlined"
color="inherit"
sx={{
paddingY: '3px',
paddingX: '12px',
textTransform: 'none',
}}
>
Contribute
</Button>
</Box>
</Link>
</Box>
</Box>
<Typography variant="h6" mt={10} px={2} width="100%" maxWidth="sm">
Expand Down

0 comments on commit 0f20bbc

Please sign in to comment.