diff --git a/frontend/src/components/Marketing.tsx b/frontend/src/components/Marketing.tsx index ad3c8ab2..5ad039ec 100644 --- a/frontend/src/components/Marketing.tsx +++ b/frontend/src/components/Marketing.tsx @@ -358,7 +358,7 @@ export function Marketing() { -
+
- Download + Desktop + + Download on the App Store +
diff --git a/frontend/src/components/icons/Android.tsx b/frontend/src/components/icons/Android.tsx new file mode 100644 index 00000000..301da8f2 --- /dev/null +++ b/frontend/src/components/icons/Android.tsx @@ -0,0 +1,16 @@ +import React from "react"; + +export function Android(props: React.SVGProps) { + return ( + + + + ); +} diff --git a/frontend/src/routes/downloads.tsx b/frontend/src/routes/downloads.tsx index 85d6fac9..90e14e19 100644 --- a/frontend/src/routes/downloads.tsx +++ b/frontend/src/routes/downloads.tsx @@ -2,7 +2,9 @@ import { createFileRoute } from "@tanstack/react-router"; import { TopNav } from "@/components/TopNav"; import { FullPageMain } from "@/components/FullPageMain"; import { MarketingHeader } from "@/components/MarketingHeader"; -import { Monitor, Apple, Terminal, Globe, Smartphone } from "lucide-react"; +import { Monitor, Terminal, Globe, Smartphone } from "lucide-react"; +import { Apple } from "@/components/icons/Apple"; +import { Android } from "@/components/icons/Android"; import packageJson from "../../package.json"; // Get version from package.json @@ -129,6 +131,51 @@ function DownloadPage() {
+ {/* Mobile Apps Section */} +
+
+ + Mobile Apps +
+
+
+
+ +
+

iOS

+

+ Download our native iOS app for iPhones and iPads. +

+
+ + Download on the App Store + +
+
+
+
+ +
+

Android

+

+ Android app coming soon. +

+
+ Stay tuned for our Android app. +
+
+
+
+ {/* Web Access Section */}
@@ -183,15 +230,6 @@ function DownloadPage() {
- - {/* Mobile Coming Soon Section */} -
-
- - Mobile Apps - Coming soon! -
-
);