# The tier table at `/creators`, which is words and a tier name. # # Read at build time by the `declare!` in `src/quasi/creators.rs`. Editing this # file is editing the page. See `content/use-cases.toml` for the split this # follows, including the trade it makes. # # `priced` names which tier's figures the row ends with, and that is the one # thing on this table a request decides: the numbers come from `TierPrices` in # memory, so the last two cells are holes and the first two are literals. The # word here is a tier name and not a price, which is what keeps a stale number # from ever being written down. # # The order is the order the shipped table listed them. [[tiers]] name = "Basic" best_for = "Text, blogs, newsletters" priced = "basic" [[tiers]] name = "Small Files" best_for = "Audio, plugins, small software" priced = "small-files" [[tiers]] name = "Big Files" best_for = "Video, games, large software" priced = "big-files" [[tiers]] name = "Everything" best_for = "All features, current and future" priced = "everything"