import type { Metadata } from "next"; import Hero from "@/components/Hero"; import Process from "@/components/Process"; import Pricing from "@/components/Pricing"; import Testimonials from "@/components/Testimonials"; import FAQ from "@/components/FAQ"; import CTA from "@/components/CTA"; import { SERVICE_CATEGORIES } from "@/lib/services"; import { plans } from "@/lib/pricing"; import { site } from "@/lib/site"; import JsonLd from "@/components/JsonLd"; import Link from "next/link"; export const metadata: Metadata = { title: "Productized IT for SMBs", description: site.description, }; export default function HomePage() { const orgLd = { "@context": "https://schema.org", "@type": "Organization", name: site.name, url: site.url, logo: site.org.logo, sameAs: site.org.sameAs, }; const faqLd = { "@context": "https://schema.org", "@type": "FAQPage", mainEntity: [ { "@type": "Question", name: "How fast can you start?", acceptedAnswer: { "@type": "Answer", text: "Most sprints start within 2–3 business days after scope confirmation.", }, }, { "@type": "Question", name: "Do you work under NDA?", acceptedAnswer: { "@type": "Answer", text: "Yes—mutual NDA available on request; we keep credentials least-privilege.", }, }, { "@type": "Question", name: "Can we switch providers later?", acceptedAnswer: { "@type": "Answer", text: "Yes. Everything is documented; you own the accounts and artifacts.", }, }, ], }; // Service category summaries const categoryDescriptions: Record = { "infrastructure-devops": "Reliable servers, containers, and automation—Docker, Kubernetes, Cloudflare, and backups that just work.", "web-performance": "Make your website fast, secure, and consistently available. Core Web Vitals, deliverability, and uptime care.", "dev-platforms": "Private Git hosting, CI/CD, staging environments, and secrets management—developer efficiency built in.", "migrations": "Move from legacy hosting or apps to modern, containerized infrastructure with zero-to-minimal downtime.", "minecraft": "Managed Minecraft servers, plugin development, and performance tuning for creators and communities.", "web-dev": "Modern websites and headless CMS setups designed for speed, SEO, and maintainability.", }; return (
{/* --- Service Areas --- */}

Service Areas

Fixed-scope sprints and managed plans for infrastructure, performance, and development. Each category leads to specialized services tailored to small and mid-sized teams.

{Object.entries(SERVICE_CATEGORIES).map(([id, cat], i) => (

{cat.label}

{categoryDescriptions[id] ?? ""}

Explore services →
))}
View all services
{/* --- Process --- */} {/* --- Pricing --- */}
{/* --- Testimonials --- */}
{/* --- FAQ --- */}
{/* --- Call to Action --- */}

Ready to make your IT infrastructure reliable and scalable?

Talk with Van Hunen IT — get a fixed-scope sprint or managed plan that fits your business.

Contact Us
); }