-m
This commit is contained in:
@@ -11,9 +11,10 @@ import Portfolio from "./pages/Portfolio";
|
|||||||
import Contact from "./pages/Contact";
|
import Contact from "./pages/Contact";
|
||||||
import ErpSystems from "./pages/services/ErpSystems";
|
import ErpSystems from "./pages/services/ErpSystems";
|
||||||
import ECommerce from "./pages/services/ECommerce";
|
import ECommerce from "./pages/services/ECommerce";
|
||||||
import RmmServices from "./pages/services/RmmServices";
|
import RmmServices from "./pages/services/CybersecurityServices";
|
||||||
import AmcSupport from "./pages/services/AmcSupport";
|
import AmcSupport from "./pages/services/AmcSupport";
|
||||||
import NotFound from "./pages/NotFound";
|
import NotFound from "./pages/NotFound";
|
||||||
|
import CybersecurityServices from "./pages/services/CybersecurityServices";
|
||||||
|
|
||||||
const queryClient = new QueryClient();
|
const queryClient = new QueryClient();
|
||||||
|
|
||||||
@@ -32,7 +33,7 @@ const App = () => (
|
|||||||
<Route path="/contact" element={<Contact />} />
|
<Route path="/contact" element={<Contact />} />
|
||||||
<Route path="/services/erp" element={<ErpSystems />} />
|
<Route path="/services/erp" element={<ErpSystems />} />
|
||||||
<Route path="/services/ecommerce" element={<ECommerce />} />
|
<Route path="/services/ecommerce" element={<ECommerce />} />
|
||||||
<Route path="/services/rmm" element={<RmmServices />} />
|
<Route path="/services/cybersecurity" element={<CybersecurityServices />} />
|
||||||
<Route path="/services/amc" element={<AmcSupport />} />
|
<Route path="/services/amc" element={<AmcSupport />} />
|
||||||
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
|
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
|
||||||
<Route path="*" element={<NotFound />} />
|
<Route path="*" element={<NotFound />} />
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ const Navigation = () => {
|
|||||||
const services = [
|
const services = [
|
||||||
{ name: "ERP Systems", path: "/services/erp" },
|
{ name: "ERP Systems", path: "/services/erp" },
|
||||||
{ name: "Custom E-Commerce", path: "/services/ecommerce" },
|
{ name: "Custom E-Commerce", path: "/services/ecommerce" },
|
||||||
{ name: "RMM Services", path: "/services/rmm" },
|
{ name: "Cybersecuirty Services", path: "/services/cybersecurity" },
|
||||||
{ name: "AMC Support", path: "/services/amc" },
|
{ name: "AMC Support", path: "/services/amc" },
|
||||||
{ name: "Community Projects", path: "/services/community" },
|
{ name: "Community Projects", path: "/services/community" },
|
||||||
{ name: "Web Development", path: "/services/web" },
|
{ name: "Web Development", path: "/services/web" },
|
||||||
|
|||||||
@@ -19,9 +19,9 @@ const Index = () => {
|
|||||||
link: "/services/ecommerce"
|
link: "/services/ecommerce"
|
||||||
}, {
|
}, {
|
||||||
icon: Shield,
|
icon: Shield,
|
||||||
title: "RMM Services",
|
title: "Cybersecurity Services",
|
||||||
description: "Remote Monitoring and Management services ensuring your IT infrastructure operates at peak performance.",
|
description: "Remote Monitoring and Management services ensuring your IT infrastructure operates at peak performance.",
|
||||||
link: "/services/rmm"
|
link: "/services/cybersecurity"
|
||||||
}, {
|
}, {
|
||||||
icon: Wrench,
|
icon: Wrench,
|
||||||
title: "AMC Support",
|
title: "AMC Support",
|
||||||
@@ -110,9 +110,9 @@ const Index = () => {
|
|||||||
|
|
||||||
{/* Services grid */}
|
{/* Services grid */}
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-7xl mx-auto">
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-7xl mx-auto">
|
||||||
{services.map((service, index) => <Link key={service.title} to={service.link}>
|
{services.map((service, index) =>
|
||||||
<ServiceCard icon={service.icon} title={service.title} description={service.description} delay={index * 100} />
|
<ServiceCard icon={service.icon} title={service.title} description={service.description} delay={index * 100} />
|
||||||
</Link>)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Trust Badges */}
|
{/* Trust Badges */}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import { Button } from "@/components/ui/button";
|
|||||||
import { Card } from "@/components/ui/card";
|
import { Card } from "@/components/ui/card";
|
||||||
import { Link } from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
|
|
||||||
const RmmServices = () => {
|
const CybersecurityServices = () => {
|
||||||
const [showDemo, setShowDemo] = useState(false);
|
const [showDemo, setShowDemo] = useState(false);
|
||||||
const [simulationActive, setSimulationActive] = useState(false);
|
const [simulationActive, setSimulationActive] = useState(false);
|
||||||
|
|
||||||
@@ -129,7 +129,7 @@ const RmmServices = () => {
|
|||||||
{/* <section className="relative container mx-auto px-6 pt-32 pb-20">
|
{/* <section className="relative container mx-auto px-6 pt-32 pb-20">
|
||||||
<div className="text-center mb-16 animate-slide-in-up">
|
<div className="text-center mb-16 animate-slide-in-up">
|
||||||
<h1 className="text-5xl md:text-6xl font-bold text-foreground mb-6">
|
<h1 className="text-5xl md:text-6xl font-bold text-foreground mb-6">
|
||||||
RMM Services
|
Cybersecurity Services
|
||||||
</h1>
|
</h1>
|
||||||
<p className="text-xl text-muted-foreground max-w-3xl mx-auto mb-4">
|
<p className="text-xl text-muted-foreground max-w-3xl mx-auto mb-4">
|
||||||
Never worry about IT infrastructure again.
|
Never worry about IT infrastructure again.
|
||||||
@@ -335,7 +335,7 @@ const RmmServices = () => {
|
|||||||
<Check className="w-16 h-16 text-primary mx-auto mb-4 animate-glow-pulse" />
|
<Check className="w-16 h-16 text-primary mx-auto mb-4 animate-glow-pulse" />
|
||||||
<h3 className="text-xl font-semibold text-foreground mb-2">Request Received!</h3>
|
<h3 className="text-xl font-semibold text-foreground mb-2">Request Received!</h3>
|
||||||
<p className="text-muted-foreground mb-6">
|
<p className="text-muted-foreground mb-6">
|
||||||
Our RMM specialists will set up your trial within 24 hours.
|
Our Cybersecurity specialists will set up your trial within 24 hours.
|
||||||
</p>
|
</p>
|
||||||
<Link to="/contact">
|
<Link to="/contact">
|
||||||
<Button variant="outline" className="glass-card">
|
<Button variant="outline" className="glass-card">
|
||||||
@@ -352,4 +352,4 @@ const RmmServices = () => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default RmmServices;
|
export default CybersecurityServices;
|
||||||
Reference in New Issue
Block a user