Skip to content

Commit 3031145

Browse files
committed
fix: update footer links and improve pricing page descriptions for clarity
1 parent af90805 commit 3031145

2 files changed

Lines changed: 8 additions & 15 deletions

File tree

src/components/global/footer.tsx

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,23 @@ const footerSections = [
77
{
88
title: "Platform",
99
links: [
10+
{ label: "Pricing", href: "/pricing" },
1011
{ label: "Events", href: "/docs/events" },
1112
{ label: "Records", href: "/docs/records" },
12-
{ label: "Feature Flags", href: "#" },
13-
{ label: "Leaderboards", href: "#" },
14-
{ label: "SDK Reference", href: "/docs/introduction" },
1513
],
1614
},
1715
{
1816
title: "Developers",
1917
links: [
2018
{ label: "Documentation", href: "/docs" },
2119
{ label: "Getting Started", href: "/docs/quick-start" },
22-
{ label: "API Reference", href: "#" },
23-
{ label: "Changelog", href: "#" },
24-
{ label: "Status Page", href: "#" },
20+
{ label: "Status Page", href: "https://stats.uptimerobot.com/kWLH8LRhyj" },
2521
],
2622
},
2723
{
2824
title: "Company",
2925
links: [
30-
{ label: "Pricing", href: "/pricing" },
3126
{ label: "About", href: "/about" },
32-
{ label: "Blog", href: "#" },
33-
{ label: "Careers", href: "#" },
3427
{ label: "Privacy Policy", href: "/privacy" },
3528
{ label: "Terms of Service", href: "/terms" },
3629
],

src/routes/pricing.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const Route = createFileRoute("/pricing")({
1616
{
1717
name: "description",
1818
content:
19-
"StackFox is free to start. Every hosted organization includes free monthly usage. You only pay if you go above the included allowance.",
19+
"StackFox is free to start. Every organization includes free monthly usage. You only pay if you go above the included allowance.",
2020
},
2121
],
2222
}),
@@ -91,7 +91,7 @@ const faqItems = [
9191
title: "What happens if I stay under the allowance?",
9292
content: (
9393
<p className="text-zinc-600">
94-
Nothing happens — you're never charged. The allowance is included automatically for every hosted organization.
94+
Nothing happens — you're never charged. The allowance is included automatically for every organization.
9595
There's no credit card required to get started.
9696
</p>
9797
),
@@ -101,7 +101,7 @@ const faqItems = [
101101
title: "How is usage calculated?",
102102
content: (
103103
<p className="text-zinc-600">
104-
Usage is measured across your hosted organization. Events are counted per ingestion call. Record Reads and Writes
104+
Usage is measured across your organization. Events are counted per ingestion call. Record Reads and Writes
105105
are counted per operation. Storage is the total bytes stored across all your records. Overage is only charged on
106106
units above the free allowance.
107107
</p>
@@ -161,7 +161,7 @@ function HeroSection({ dashboardUrl }: { dashboardUrl: string }) {
161161
Pay only for what you use.
162162
</h1>
163163
<p className="mb-4 max-w-2xl text-lg text-zinc-300 sm:text-xl">
164-
Every hosted StackFox organization includes a free monthly usage allowance.{" "}
164+
Every StackFox organization includes a free monthly usage allowance.{" "}
165165
<span className="text-white font-semibold">You only pay if you go above it.</span>
166166
</p>
167167
<p className="mb-8 max-w-2xl text-base text-zinc-400">
@@ -222,7 +222,7 @@ function IncludedAllowanceSection() {
222222
Included every month. <span className="text-primary">For free.</span>
223223
</h2>
224224
<p className="mx-auto max-w-2xl text-base text-zinc-600 sm:text-lg">
225-
Every hosted organization automatically gets this allowance each month. If your usage stays under these
225+
Every organization automatically gets this allowance each month. If your usage stays under these
226226
limits, your bill is{" "}
227227
<span className="font-semibold text-foreground">$0</span>.
228228
</p>
@@ -634,7 +634,7 @@ function TrustSection({ dashboardUrl }: { dashboardUrl: string }) {
634634
{
635635
icon: <CheckCircle className="h-5 w-5 text-green-600" />,
636636
title: "No charges under the allowance",
637-
body: "The free monthly allowance is real — not a trial. Every hosted organization gets it automatically, every month.",
637+
body: "The free monthly allowance is real — not a trial. Every organization gets it automatically, every month.",
638638
},
639639
]
640640

0 commit comments

Comments
 (0)