import { PageHead } from "~/components/PageHead"; import SubdomainHeader from "~/components/SubdomainHeader"; import Button from "~/components/ui/Button"; import { useDarkMode } from "~/context/darkMode"; import { useSite } from "~/context/SiteContext"; const NOOK_DOWNLOAD_URL = "https://freno.me/api/downloads/TheNook-0.2.0.zip"; const FEATURES = [ { title: "Agent orchestration", body: "Orchestrate your coding agents in one native panel, with sessions that keep working while you do." }, { title: "A beautiful native UI", body: "Animated panels and buttery SwiftUI transitions, tuned to feel right at home on your Mac." }, { title: "Fan & thermal insight", body: "Read and control system fans, watch temperatures, and keep performance predictable under load." }, { title: "Private by design", body: "Runs fully on your machine with no mandatory accounts. Your hardware data never leaves the device." }, { title: "One-time license", body: "Pay once, activate on up to three of your own Macs. No subscriptions, no forced renewals." } ] as const; export default function NookLanding() { const site = useSite(); const { isDark } = useDarkMode(); const brandColor = () => isDark() ? (site().brandColorDark ?? site().brandColor) : site().brandColor; return ( <> {/* ── Hero ─────────────────────────────────────────────────────── */}
The Nook App Icon
The Nook

Your Mac, under your control

Agent orchestration, fan and thermal control — native macOS, one-time license.

macOS 14+ · 14-day free trial · 3 devices

$10 one-time · 3 devices · 14-day free trial

{/* ── Feature highlights ───────────────────────────────────────── */}

One panel for your agents and your Mac

{FEATURES.map((feature) => (

{feature.title}

{feature.body}

))}
{/* ── CTA ──────────────────────────────────────────────────────── */}

Try it free for 14 days

Orchestrate your coding agents, watch temperatures, take control of your fans, and keep background services quiet. When the trial ends, unlock everything with a single one-time payment — no subscription, ever.

Buy a license → $10

One license covers up to 3 of your own Macs.

); }