Skip to content

Commit

Permalink
Update homepage cards (#1444)
Browse files Browse the repository at this point in the history
* Update homepage cards

* Power -> Build and scale
  • Loading branch information
alexandratran committed Jul 23, 2024
1 parent f2cf103 commit 31de8d8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 18 deletions.
4 changes: 2 additions & 2 deletions services/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import CodeTerminal from '@site/src/components/CodeTerminal/CodeTerminal.jsx';
import SectionAPIs from '@site/src/components/Sections/SectionAPIs.jsx';
import SectionNetworks from '@site/src/components/Sections/SectionNetworks.jsx';

# Power your dapp using services
# Build and scale your dapp using services

MetaMask, in partnership with [Infura](https://www.infura.io/), offers a comprehensive set of
services to facilitate dapp and Snap development.
This includes JSON-RPC APIs for easy access to key networks and REST APIs aimed at automating and
optimizing essential development tasks.
These services streamline development workflows to help developers build robust and successful
These services streamline development workflows to help developers build and scale robust
dapps and Snaps.

## Features
Expand Down
2 changes: 1 addition & 1 deletion src/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export type CardItem = {

export default function Card({ title, link, description }: CardItem) {
return (
<div className="col col--6 margin-bottom--lg">
<div className="col col--4 margin-bottom--lg">
<Link className={clsx(styles.root, "card")} href={link}>
<div className="card__header">
<h3>{title}</h3>
Expand Down
20 changes: 5 additions & 15 deletions src/components/CardSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Card, { type CardItem } from "@site/src/components/Card";

const CardList: CardItem[] = [
{
title: "Wallet",
title: "📱 Integrate your dapp with the MetaMask wallet",
link: "/wallet",
description: (
<>
Expand All @@ -13,7 +13,7 @@ const CardList: CardItem[] = [
),
},
{
title: "Snaps",
title: "🛠️ Extend the functionality of MetaMask using Snaps",
link: "/snaps",
description: (
<>
Expand All @@ -23,22 +23,12 @@ const CardList: CardItem[] = [
),
},
{
title: "Services",
title: "📐 Build and scale your dapp using services",
link: "/services",
description: (
<>
Power your dapp or Snap using services provided by MetaMask and Infura.
This includes APIs aimed at optimizing essential development tasks.
</>
),
},
{
title: "Infura dashboard",
link: "/developer-tools/dashboard",
description: (
<>
Use the Infura dashboard as a central hub for managing your Infura API
keys, monitoring usage, and accessing account and billing information.
Build and scale your dapp or Snap using services provided by MetaMask and Infura.
This includes APIs that optimize essential development tasks.
</>
),
},
Expand Down

0 comments on commit 31de8d8

Please sign in to comment.