);
};
diff --git a/components/Sections/Companies.tsx b/components/Sections/Companies.tsx
index 1d60449..19b7f0a 100644
--- a/components/Sections/Companies.tsx
+++ b/components/Sections/Companies.tsx
@@ -1,25 +1,28 @@
import Image from "next/image";
-import React from "react";
const Companies = () => {
return (
-
-
- Trusted by over 14,540 businesses to enhance learning and drive
- educational growth.
+
+ Trusted by over 14,540 businesses to enhance learning and drive educational growth.
-
-
-
-
-
-
-
+
+
+ {[1, 2, 3, 4, 5, 6].map((n) => (
+
+ ))}
-
+
);
};
diff --git a/components/Sections/HeroSection.tsx b/components/Sections/HeroSection.tsx
index 1e7e979..6b3dd5e 100644
--- a/components/Sections/HeroSection.tsx
+++ b/components/Sections/HeroSection.tsx
@@ -4,37 +4,36 @@ import Image from "next/image";
import { BackgroundRippleEffect } from "../ui/BackgroundRippleEffect";
import { Badge } from "@/components/ui/badge";
-import React from "react";
-
const HeroSection = () => {
return (
-
+
+
-
-
-
- 3500+ pro users
-
-
-
- Simplify, Scale, Succeed with Our SaaS Solution
-
-
- Empower your custom relations by getting trusted clients, faster
- and easier
-
-
-
+
+
+
+ 3500+ pro users
+
+
+
+ Simplify, Scale, Succeed with Our SaaS Solution
+
+
+
+ Empower your customer relations by getting trusted clients, faster and easier.
+
+
-
+
+
);
};
diff --git a/components/Sections/Stats.tsx b/components/Sections/Stats.tsx
index da4e3d6..7c25142 100644
--- a/components/Sections/Stats.tsx
+++ b/components/Sections/Stats.tsx
@@ -1,36 +1,32 @@
-import React from "react";
-
const Stats = () => {
return (
-
-
-
-
-
- Empowering Growth and Innovation with Cutting-Edge Technology
- Solutions
-
+
+
+
+ Empowering Growth and Innovation with Cutting-Edge Technology Solutions
+
+
+
+
-
-
-
-
297+
-
Customers Managed
-
-
-
20,000+
-
Leads Found
-
+
+
297+
+
Customers Managed
+
+
+
-
+
);
};
diff --git a/components/landing/MobileNav.tsx b/components/landing/MobileNav.tsx
new file mode 100644
index 0000000..4c6d38f
--- /dev/null
+++ b/components/landing/MobileNav.tsx
@@ -0,0 +1,104 @@
+"use client";
+
+import { motion, AnimatePresence } from "framer-motion";
+import Link from "next/link";
+import { X, Menu } from "lucide-react";
+import { useState } from "react";
+import { useUser } from "@clerk/nextjs";
+
+const navLinks = [
+ { href: "/landing", label: "Home" },
+ { href: "#partners", label: "Partners" },
+ { href: "#why-us", label: "Why Us?" },
+];
+
+export default function LandingMobileNav() {
+ const [open, setOpen] = useState(false);
+ const { isSignedIn } = useUser();
+
+ return (
+ <>
+ {/* Mobile Menu Button */}
+
+
+
+ {open && (
+ <>
+ {/* Background Overlay */}
+ setOpen(false)}
+ initial={{ opacity: 0 }}
+ animate={{ opacity: 1 }}
+ exit={{ opacity: 0 }}
+ />
+
+ {/* Right Slide Menu */}
+
+ {/* Close Button */}
+
+
+ {/* Menu Links */}
+
+
+ {/* Auth Buttons */}
+
+ {isSignedIn ? (
+ setOpen(false)}
+ className="block bg-blue-600 text-white py-2 px-4 rounded-lg text-center font-semibold"
+ >
+ Go to Dashboard
+
+ ) : (
+ <>
+ setOpen(false)}
+ className="block bg-blue-600 text-white py-2 px-4 rounded-lg text-center font-semibold"
+ >
+ Sign In
+
+
+ setOpen(false)}
+ className="block border border-blue-600 text-blue-600 py-2 px-4 rounded-lg text-center font-semibold"
+ >
+ Create Account
+
+ >
+ )}
+
+
+ >
+ )}
+
+ >
+ );
+}