@@ -43,33 +60,63 @@ const ShuffleHero = () => {
Advanced desktop gallery application powered by Tauri, React, and Rust with a Python backend for intelligent image analysis and seamless management.
-
- {/* Download button - scrolls to downloads section */}
-
- Download
-
-
- {/* View Docs button - links to documentation */}
-
+
+ {/* Dynamic Download button */}
+ {os === "unknown" ? (
+
+ {btnContent.text}
+
+ ) : (
+
+ {btnContent.text}
+
+ )}
+
+ {/* View Docs button - links to documentation */}
+
+ View Docs
+
+
+
+ {
+ e.preventDefault();
+ scrollToDownloads();
+ }}
+ initial={{ opacity: 0 }}
+ animate={{ opacity: 1 }}
+ transition={{ duration: 0.5, delay: 0.8 }}
+ className="text-xs md:text-sm text-slate-500 hover:text-slate-700 dark:text-slate-400 dark:hover:text-slate-200 transition-colors underline underline-offset-2"
>
- View Docs
+ Looking for another OS?
diff --git a/src/Pages/Landing page/Navbar.tsx b/src/Pages/Landing page/Navbar.tsx
index 42a11cd..ec5a2c7 100644
--- a/src/Pages/Landing page/Navbar.tsx
+++ b/src/Pages/Landing page/Navbar.tsx
@@ -1,6 +1,6 @@
import React, { useState, useEffect } from "react";
import { Link } from "react-router-dom";
-import { Menu, X } from "lucide-react";
+import { Menu, X, Github } from "lucide-react";
import { Button } from "@/components/ui/button";
import YourLogo from "@/assets/38881995.png"; // Update this import path to your logo
@@ -146,6 +146,19 @@ const Navbar: React.FC = () => {