From 6acba0fc175b45aaedd7a2c68aff28186fd84877 Mon Sep 17 00:00:00 2001 From: Aaron Sutula Date: Tue, 8 Oct 2024 16:56:50 -0600 Subject: [PATCH 1/2] add a pricing feature Signed-off-by: Aaron Sutula --- lib/features.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/features.ts b/lib/features.ts index db1d6aaa..c7cc07cb 100644 --- a/lib/features.ts +++ b/lib/features.ts @@ -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[] = [ { @@ -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 From bdc5d653537ce90ccf89a8fb435c22e2698793f0 Mon Sep 17 00:00:00 2001 From: Aaron Sutula Date: Thu, 10 Oct 2024 10:48:21 -0600 Subject: [PATCH 2/2] prettier Signed-off-by: Aaron Sutula --- lib/features.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/features.ts b/lib/features.ts index c7cc07cb..17d5caad 100644 --- a/lib/features.ts +++ b/lib/features.ts @@ -1,5 +1,11 @@ import { type Feature } from "@/lib/types" -import { FaDatabase, FaLock, FaBriefcase, FaLink, FaDollarSign } from "react-icons/fa" +import { + FaDatabase, + FaLock, + FaBriefcase, + FaLink, + FaDollarSign, +} from "react-icons/fa" const features: Feature[] = [ {