import { useEffect, useMemo, useState } from "react"; export default function SystemsCreationSite() { const pages = useMemo( () => ({ home: { label: "Home", href: "/", title: "AI Systems Creation | AI, SaaS, and Web Consulting", description: "Systems Creation helps businesses grow with AI consulting, SaaS strategy, and modern web experiences.", }, services: { label: "Services", href: "/services", title: "Services | AI Systems Creation", description: "Explore AI strategy, SaaS consulting, and web design services from Systems Creation.", }, about: { label: "About", href: "/about", title: "About | AI Systems Creation", description: "Learn how Systems Creation helps businesses modernize with strategy, execution, and scalable systems.", }, contact: { label: "Contact", href: "/contact", title: "Contact | AI Systems Creation", description: "Connect with Systems Creation to discuss AI, SaaS, web, and growth consulting needs.", }, privacy: { label: "Privacy Policy", href: "/privacy-policy", title: "Privacy Policy | AI Systems Creation", description: "Read the privacy policy for Systems Creation.", }, }), [] ); const [currentPath, setCurrentPath] = useState("/"); useEffect(() => { const syncPath = () => setCurrentPath(window.location.pathname || "/"); syncPath(); window.addEventListener("popstate", syncPath); return () => window.removeEventListener("popstate", syncPath); }, []); useEffect(() => { const page = Object.values(pages).find((item) => item.href === currentPath) || pages.home; document.title = page.title; const metaDescription = document.querySelector('meta[name="description"]'); if (metaDescription) { metaDescription.setAttribute("content", page.description); } }, [currentPath, pages]); const socialLinks = [ { label: "LinkedIn", href: "https://www.linkedin.com" }, { label: "X", href: "https://x.com" }, { label: "Facebook", href: "https://www.facebook.com" }, { label: "Instagram", href: "https://www.instagram.com" }, ]; const services = [ { title: "AI Strategy & Automation", description: "Design practical AI roadmaps, workflow automation, business process improvements, and adoption plans that create measurable efficiency.", outcomes: ["Workflow automation", "AI opportunity mapping", "Operational efficiency"], }, { title: "SaaS Product Consulting", description: "Validate product direction, refine feature priorities, improve UX, and align technical execution with revenue and retention goals.", outcomes: ["Product strategy", "Roadmapping", "Growth alignment"], }, { title: "Web Design & Development", description: "Build modern, conversion-focused websites and digital experiences that communicate value clearly and turn visitors into qualified leads.", outcomes: ["Modern websites", "Lead generation", "Brand credibility"], }, ]; const processSteps = [ { step: "01", title: "Discover", text: "We assess goals, audience, pain points, systems, and opportunities to define the right direction.", }, { step: "02", title: "Design", text: "We build a focused roadmap, messaging structure, and delivery plan aligned to growth and usability.", }, { step: "03", title: "Deliver", text: "We launch polished solutions, refine performance, and help create a stronger long-term digital foundation.", }, ]; const insights = [ "AI-enabled operations", "Scalable SaaS growth planning", "Conversion-focused web strategy", "Business-first technical execution", ]; function navigate(href) { window.history.pushState({}, "", href); setCurrentPath(href); window.scrollTo({ top: 0, behavior: "smooth" }); } function NavLink({ href, children, className = "" }) { const isActive = currentPath === href; return ( ); } function LogoMark() { return ( ); } function SiteHeader() { return (
); } function SiteFooter() { return ( ); } function PageShell({ eyebrow, title, description, children, cta = true }) { return (
{eyebrow}

{title}

{description}

{cta ? (
Contact Info
) : null}
{children}
); } function HomePage() { return (

Focus

Automation

Streamline repetitive work and unlock faster execution.

Built For

Growth

Create a scalable digital foundation for sales and operations.

What We Deliver

Strategy backed by execution-ready design and development.

From AI adoption planning to SaaS growth strategy and lead-generation websites, Systems Creation builds digital systems that work together.

What standard business pages need

A complete foundation for future pages.

{insights.map((item) => (
{item}
))}

Services

Consulting built to simplify complexity.

We help organizations evaluate opportunities, build the right systems, and create a stronger digital presence.

{services.map((service) => (

{service.title}

{service.description}

))}

Process

A simple path from idea to execution.

{processSteps.map((step) => (

Step {step.step}

{step.title}

{step.text}

))}
); } function ServicesPage() { return (
{services.map((service) => (

{service.title}

{service.description}

Key outcomes

{service.outcomes.map((outcome) => (
{outcome}
))}
))}
); } function AboutPage() { return (

We focus on business outcomes first. That means better systems, clearer messaging, stronger user experiences, and solutions that support revenue and operational scale.

Whether you need a roadmap, site refresh, product strategy, AI workflow plan, or a smarter digital foundation, Systems Creation helps turn ideas into structured, usable systems.

Why clients work with us

Clear strategic direction with execution in mind.
Modern, credible design for B2B decision-makers.
Reusable structure for future pages and site expansion.
Messaging aligned to trust, conversion, and growth.
); } function ContactPage() { return (

Start the conversation

Reach out for AI consulting, SaaS advisory, web strategy, or a broader digital modernization discussion.