diff --git a/src/App.tsx b/src/App.tsx index 4e07f65..3532875 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,9 +1,12 @@ import { Toaster as Sonner } from "@/components/ui/sonner"; import { TooltipProvider } from "@/components/ui/tooltip"; import { ThemeProvider } from "@/contexts/ThemeContext"; +import { ReactQueryDevtools } from "@tanstack/react-query-devtools"; import { AnimatePresence } from "framer-motion"; import { BrowserRouter, Route, Routes, useLocation } from "react-router-dom"; import ScrollToTop from "./components/ScrollToTop"; +import OverviewPage from "./pages/admins/components/dashboards/OverviewPage"; +import ManageProject from "./pages/admins/components/projects/ManageProject"; import DashboardLayout from "./pages/admins/layout/DashboardLayout"; import MainLayout from "./pages/admins/layout/MainLayout"; import Index from "./pages/Index"; @@ -12,10 +15,6 @@ import { PrivacyPolicy } from "./pages/PrivacyPolicy"; import ProjectDetails from "./pages/ProjectDetails"; import Projects from "./pages/Projects"; import { QueryProvider } from "./provider/QueryProvider"; -import OverviewPage from "./pages/admins/components/dashboards/OverviewPage"; -import ManageProject from "./pages/admins/components/projects/ManageProject"; -import { ReactQueryDevtools } from "@tanstack/react-query-devtools"; - function AnimatedRoutes() { const location = useLocation(); @@ -36,8 +35,8 @@ function AnimatedRoutes() { {/* dashboard layouts */} }> } /> - }/> - {/* } /> + } /> + {/* } /> } /> */} } /> @@ -48,13 +47,12 @@ function AnimatedRoutes() { const App = () => ( - + - diff --git a/src/components/HeroSection.tsx b/src/components/HeroSection.tsx index 11789d6..1d2eaaf 100644 --- a/src/components/HeroSection.tsx +++ b/src/components/HeroSection.tsx @@ -66,7 +66,7 @@ export default function HeroSection() { transition={{ duration: 20, repeat: Infinity, ease: "linear" }} /> - - - {/* Glowing orbs */} -
-
{/* Content */}
@@ -100,15 +84,49 @@ export default function HeroSection() { > {/* Badge */} - - - Innovating the Future - + + + +
+ {/* Animated Active Pulse Dot */} + + + + + + + + Empowering Ideas Through Innovation + +
+ + {/* 3. Outer Glow (Glows based on theme) */} +
{/* Main headline */} @@ -125,7 +143,7 @@ export default function HeroSection() { initial={{ opacity: 0, y: 20 }} animate={{ opacity: 1, y: 0 }} transition={{ delay: 0.5 }} - className="block text-primary neon-text-glow" + className="block text-primary" > with Technology @@ -160,7 +178,7 @@ export default function HeroSection() { diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 5435f92..1179a9a 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -80,23 +80,23 @@ export default function Navbar() { className="relative text-foreground/80 hover:text-foreground transition-colors font-medium group" > {item.name} - + ))} {/* Theme Controls */} -
+
{/* Accent Color Picker */} -
+
{accentColors.map((color) => ( setAccent(color.name)} className={`w-6 h-6 rounded-full ${color.color} transition-all ${ accent === color.name - ? "ring-2 dark:ring-white ring-primary ring-offset-2 ring-offset-background" + ? "ring-1 dark:ring-white ring-primary ring-offset-2 ring-offset-background" : "" }`} whileHover={{ scale: 1.2 }} @@ -148,9 +148,9 @@ export default function Navbar() { >
@@ -228,7 +228,7 @@ export default function Navbar() { onClick={() => setAccent(color.name)} className={`w-8 h-8 rounded-full ${color.color} transition-all ${ accent === color.name - ? "ring-2 ring-white ring-offset-2 ring-offset-background" + ? "ring-2 ring-white ring-offset-1 ring-offset-background" : "" }`} aria-label={`Set ${color.name} theme`} @@ -256,7 +256,7 @@ export default function Navbar() { setIsMobileMenuOpen(false); setIsModalOpen(true); }} - className="w-full bg-primary text-primary-foreground font-semibold py-3 rounded-full neon-glow" + className="w-full bg-primary text-primary-foreground font-semibold py-3 rounded-full" > Let Me Talk diff --git a/src/components/ServicesSection.tsx b/src/components/ServicesSection.tsx index 6249e33..a1b2a98 100644 --- a/src/components/ServicesSection.tsx +++ b/src/components/ServicesSection.tsx @@ -39,11 +39,7 @@ export default function ServicesSection() { return (
- {/* Background decoration */} -
-
-
-
+
{/* Section Header */} @@ -57,7 +53,7 @@ export default function ServicesSection() { Our Expertise

- What We Do + What We Do

We deliver comprehensive technology solutions that empower @@ -79,9 +75,9 @@ export default function ServicesSection() { {/* Card */}

{/* Glow effect on hover */} -
+ {/*
-
+
*/} {/* Icon */} { return (
- + @@ -24,7 +22,7 @@ const Index = () => { {/* */} -
);