Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/components/landing/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export default function Header({ githubStars }: Props) {
</svg>
<div>
<div className="font-medium">Get for iPhone</div>
<div className="text-xs text-muted-foreground">iOS 18+ &middot; Free</div>
<div className="text-xs text-muted-foreground">iOS 18+ &middot; TestFlight beta</div>
</div>
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/landing/mobile-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export default function MobileNav({ isOpen, onClose }: Props) {
onClick={onClose}
className="text-sm font-medium text-muted-foreground transition-colors hover:text-foreground"
>
Get for iPhone
Get for iPhone (beta)
</a>
</nav>
</div>
Expand Down
6 changes: 6 additions & 0 deletions resources/js/components/landing/pricing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,12 @@ function PricingCard({ tier, cycle, discountCode, discount, paymentProvider, tea
})()}
</div>

{!isFree && cycle === 'yearly' && priceObj !== null && priceObj.lifetime > 0 && (
<p className="mt-1 text-sm text-muted-foreground">
or ${priceObj.lifetime} once, no renewal
</p>
)}

{isTeam && !isFree && (
<div className="mt-4 flex items-center justify-between">
<span className="text-sm text-muted-foreground">${unitPrice}/seat</span>
Expand Down
Loading