forked from Nutlope/roomGPT
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,8 @@ export default function Pricing() { | |
<p className="mx-auto mt-6 max-w-2xl text-center text-lg leading-8 text-gray-500 mb-10"> | ||
You currently have{" "} | ||
<span className="font-semibold text-gray-400"> | ||
{data?.remainingGenerations} credits | ||
{data?.remainingGenerations}{" "} | ||
{data?.remainingGenerations > 1 ? "credits" : "credit"} | ||
</span> | ||
. Purchase more below. | ||
</p> | ||
|
@@ -53,9 +54,6 @@ export default function Pricing() { | |
<h4 className="flex-none leading-6 mt-2 text-2xl font-bold tracking-tight text-white sm:text-5xl"> | ||
What’s included | ||
</h4> | ||
<p className="text-gray-300 mt-5"> | ||
Have any pricing questions or feedback? Email [email protected] | ||
</p> | ||
</div> | ||
<ul | ||
role="list" | ||
|
@@ -152,9 +150,13 @@ export default function Pricing() { | |
clip-rule="evenodd" | ||
/> | ||
</svg> | ||
Early access to future features | ||
Early access to new features | ||
</li> | ||
</ul> | ||
<p className="text-gray-400 mb-5"> | ||
Interested in team pricing or have any pricing questions? Email{" "} | ||
<span className="text-gray-300">[email protected]</span> | ||
</p> | ||
<Footer /> | ||
</div> | ||
); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters