Skip to content

Commit

Permalink
add a pricing feature
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Sutula <[email protected]>
  • Loading branch information
asutula committed Oct 8, 2024
1 parent 13c750a commit 6acba0f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lib/features.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type Feature } from "@/lib/types"
import { FaDatabase, FaLock, FaBriefcase, FaLink } from "react-icons/fa"
import { FaDatabase, FaLock, FaBriefcase, FaLink, FaDollarSign } from "react-icons/fa"

const features: Feature[] = [
{
Expand Down Expand Up @@ -29,6 +29,13 @@ const features: Feature[] = [
"Live on Ethereum, Optimism, Arbitrum, Arbitrum Nova, and Polygon. Filecoin and zkEVMs coming soon.",
link: "https://docs.tableland.xyz/fundamentals/supported-chains",
},
{
title: "Pricing",
icon: FaDollarSign,
description:
"The Tableland protocol is integrated with various EVM networks and processes user payments per SQL write operation. These fees are payed as transaction gas in a way familiar to users of any blockchain-based technology.",
link: "https://docs.tableland.xyz/fundamentals/about/glossary#transaction",
},
]

export default features

0 comments on commit 6acba0f

Please sign in to comment.