feat: add landing page download page + fixes (#1)

This commit is contained in:
Owen Gretzinger
2025-07-11 23:27:03 -04:00
committed by GitHub
parent 78393af91c
commit 5247f11ba9
8 changed files with 4910 additions and 129 deletions
+11 -6
View File
@@ -17,18 +17,23 @@ export default function FinalCTA() {
</p>
<div className="flex flex-col sm:flex-row gap-6 justify-center mb-12">
<Button size="lg" className="bg-blue-600 hover:bg-blue-700 text-lg px-8 py-4 group">
<Download className="w-5 h-5 mr-2" />
Download for macOS
<ArrowRight className="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform" />
<Button size="lg" className="bg-blue-600 hover:bg-blue-700 text-lg px-8 py-4 group" asChild>
<a href="/download">
<Download className="w-5 h-5 mr-2" />
Download for macOS
<ArrowRight className="w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform" />
</a>
</Button>
<Button
variant="outline"
size="lg"
className="border-gray-600 text-gray-300 hover:bg-gray-800 text-lg px-8 py-4 bg-transparent"
asChild
>
<Github className="w-5 h-5 mr-2" />
Learn More on GitHub
<a href="https://github.com/owengretzinger/meetingnotes">
<Github className="w-5 h-5 mr-2" />
Learn More on GitHub
</a>
</Button>
</div>