"use client"; import { useState } from "react"; import ProjectItems from "@/components/services/ProjectItems"; import GetStartedButton from "@/components/navigation/GetStartedButton"; import { projectItemsData } from "@/data/StaticData"; const ServicesPage = () => { const [activeIndex, setActiveIndex] = useState(-1); return (

Bird eye view

{activeIndex === -1 ? ( <>

Boost Your Security.
Simplify Your Workflow.

LAN Codes is designed for organizations that want a smarter, faster way to strengthen their security posture. Our custom LLM automatically detects vulnerabilities and unusual patterns—removing the tedious manual work so your team can focus on what truly matters: investigating threats and finding solutions.

Even if a breach occurs, your critical data stays encrypted and protected, giving you the confidence and time to respond effectively and prevent future incidents.

) : (

{projectItemsData[activeIndex]?.content}

)}

Affordable Security for Everyone

We believe cybersecurity should be accessible to all businesses, regardless of size. Our solutions are designed to be cost effective without compromising on security

); }; export default ServicesPage;