"use client"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { Download, AlertTriangle, Calendar, DollarSign, Shield, MessageSquare, } from "lucide-react"; import Header from "../components/header"; import { downloadAndNavigate } from "@/lib/utils"; function triggerDownload() { // Just trigger the download without navigation since we're already on the download page window.open( "https://github.com/owengretzinger/meetingnotes/releases/latest/download/Meetingnotes.dmg", "_blank" ); } export default function DownloadPage() { return (

Star on GitHub

Consider starring the project to show support and help others discover it.

Book a Call

I would love to walk you through the setup and hear your thoughts.

Get API Key

You'll need it to transcribe and generate enhanced notes. (~$0.20/hour)

Download didn't start automatically?{" "}

Questions?

If you run into any issues or have questions about the setup, don't hesitate to reach out.

); }