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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Hyprnote is an AI notetaking app specifically designed to take meeting notes. With Hyprnote, you can transcribe all kinds of meetings whether it be online or offline.

- **Listens** to your meetings so you can only jot down important stuff
- No bots joining your meetings - Hyprnote listens directly to sounds coming in & out of your computer
- **No bots** joining your meetings - Hyprnote listens directly to sounds coming in & out of your computer
- Crafts perfect **summaries** based on your memos, right after the meeting is over
- You can run Hyprnote completely **offline** by using LM Studio or Ollama

Expand All @@ -27,8 +27,8 @@ brew tap fastrepl/hyprnote && brew install hyprnote --cask
```

- [macOS](https://hyprnote.com/download) (public beta)
- [Windows](https://github.com/fastrepl/hyprnote/issues/66) (soon)
- [Linux](https://github.com/fastrepl/hyprnote/issues/67) (of course)
- [Windows](https://github.com/fastrepl/hyprnote/issues/66) (q1 2026)
- [Linux](https://github.com/fastrepl/hyprnote/issues/67) (q1 2026)

## Highlights

Expand Down
24 changes: 9 additions & 15 deletions apps/web/src/routes/_view/pricing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,11 @@ const pricingPlans: PricingPlan[] = [
{ label: "Bring Your Own Key (STT & LLM)", included: true },
{ label: "Basic Sharing (Copy, PDF)", included: true },
{ label: "All Data Local", included: true },
{
label: "Integrations",
included: "partial",
tooltip: "Available with free account signup",
},
{ label: "Templates & Chat", included: false },
{ label: "Templates & Chat", included: true },
{ label: "Integrations", included: false },
{ label: "Cloud Services (STT & LLM)", included: false },
{ label: "Cloud Sync", included: false },
{ label: "Shareable Links", included: false },
{ label: "Unified Billing & Access Management", included: false },
],
},
{
Expand All @@ -64,7 +59,6 @@ const pricingPlans: PricingPlan[] = [
features: [
{ label: "Everything in Free", included: true },
{ label: "Integrations", included: true },
{ label: "Templates & Chat", included: true },
{ label: "Cloud Services (STT & LLM)", included: true },
{
label: "Cloud Sync",
Expand All @@ -78,11 +72,6 @@ const pricingPlans: PricingPlan[] = [
tooltip: "DocSend-like: view tracking, expiration, revocation",
comingSoon: true,
},
{
label: "Unified Billing & Access Management",
included: true,
comingSoon: true,
},
],
},
];
Expand Down Expand Up @@ -187,10 +176,10 @@ function PricingCard({ plan }: { plan: PricingPlan }) {
${plan.originalPrice.monthly}
</span>
)}
<span className="text-neutral-600">/seat/month</span>
<span className="text-neutral-600">/month</span>
</div>
<div className="text-sm text-neutral-600">
or ${plan.price.yearly}/seat/year{" "}
or ${plan.price.yearly}/year{" "}
{plan.originalPrice && (
<span className="text-neutral-400 line-through">
${plan.originalPrice.yearly}
Expand Down Expand Up @@ -297,6 +286,11 @@ function FAQSection() {
answer:
"Pro users get DocsSend-like controls: track who views your notes, set expiration dates, and revoke access anytime.",
},
{
question: "What is unified billing?",
answer:
"Unified billing allows organizations to manage all team member subscriptions under a single invoice. Instead of individual team members paying separately, you get one consolidated bill for your entire team. This includes centralized access management, so admins can add or remove users, and handle all payments from one account.",
},
{
question: "Is there a team discount?",
answer: "Yes! Contact us for larger team pricing.",
Expand Down
7 changes: 1 addition & 6 deletions apps/web/src/utils/sitemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export type TRoutes = FileRouteTypes["fullPaths"];

export function getSitemap(): Sitemap<TRoutes> {
return {
siteUrl: "https://hypr.com",
siteUrl: "https://hyprnote.com",
defaultPriority: 0.5,
defaultChangeFreq: "monthly",
routes: {
Expand Down Expand Up @@ -142,10 +142,6 @@ export function getSitemap(): Sitemap<TRoutes> {
priority: 0.6,
changeFrequency: "monthly",
},
"/team": {
priority: 0.6,
changeFrequency: "monthly",
},
"/templates": {
priority: 0.7,
changeFrequency: "weekly",
Expand All @@ -167,7 +163,6 @@ export function getSitemap(): Sitemap<TRoutes> {

"/blog/$slug": async () => {
try {
// Use dynamic import with full path to avoid module resolution during config phase
const path = await import("path");
const url = await import("url");
const __dirname = path.dirname(url.fileURLToPath(import.meta.url));
Expand Down
Loading