import type { Metadata } from "next"; import Pricing from "@/components/Pricing"; import Testimonials from "@/components/Testimonials"; import FAQ from "@/components/FAQ"; 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: "Managed Hosting & Development — VPS, Websites & Minecraft | Van Hunen IT", description: "Managed VPS hosting (managed or owned), Managed Website hosting & care, Website development, and Managed Minecraft hosting & plugins. Self-service provisioning, SLAs, restore-tested backups, expert support.", }; 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 faqItems = [ { q: "How fast can you start?", a: "Most projects start within 2–3 business days after scope confirmation.", }, { q: "Can I own the VPS through your platform?", a: "Yes. Choose Owned mode on the VPS page. We provision into your cloud account via a secure connect flow. You keep full ownership; we still manage it.", }, { q: "Do you support self-service deploys?", a: "Yes. You can self-provision a VPS or deploy a Minecraft server in minutes—both include backups and monitoring by default.", }, { q: "Do you work under NDA?", a: "Yes—mutual NDA available on request; we keep credentials least-privilege.", }, { q: "What’s your guarantee?", a: "We show proof of outcomes. If the agreed scope isn’t met, we make it right or refund the sprint fee.", }, { q: "Do you offer 24/7?", a: "Yes—Mission-Critical includes 24/7 paging with a 1-hour first response. Essential and Growth cover business hours.", }, ]; const faqLd = { "@context": "https://schema.org", "@type": "FAQPage", mainEntity: faqItems.map((i) => ({ "@type": "Question", name: i.q, acceptedAnswer: { "@type": "Answer", text: i.a }, })), }; const heroBullets = [ { title: "Managed or Owned VPS hosting", body: "Hardened servers, monitoring, and verified backups—hosted by us or owned in your account.", href: "/vps", }, { title: "Managed Website hosting & care", body: "Updates, uptime, security checks, and monthly restore-tested backups.", href: "/services#website-care", }, { title: "Website development", body: "Fast Next.js sites, SEO-ready with deployment included.", href: "/services#development", }, { title: "Minecraft hosting & plugins", body: "Self-service deploys, tuned performance, backups, and custom features.", href: "/minecraft", }, ]; const services = [ { title: "Managed VPS Hosting (Managed or Owned)", body: "Secure, fast VPS hosting—server management, monitoring, and restore-tested backups. Provision on our platform or own it in your cloud.", href: "/vps", cta: "Provision a VPS →", }, { title: "Managed Website Hosting & Care", body: "Fully managed website hosting & maintenance—updates, uptime, security checks, and monthly restore tests.", href: "/services#website-care", cta: "Start Managed Website Hosting →", }, { title: "Website Development (Next.js)", body: "Launch a fast, SEO-ready site with modern tech, analytics, and deployment to your managed hosting.", href: "/services#development", cta: "Build My Website →", }, { title: "Managed Minecraft Server Hosting & Plugins", body: "Lag-free, stable Minecraft hosting on a hardened VPS, plus custom Paper/Spigot plugins when you need them.", href: "/minecraft", cta: "Deploy a Server →", }, ]; return (
{/* --- HERO --- */}

Managed Hosting & Development — Fast, Secure, Done-for-You

Get reliable Managed or Owned VPS hosting,{" "} Managed Website hosting & care,{" "} Website development, and{" "} Minecraft server hosting & plugins. Self-service provisioning with{" "} restore-tested backups and real SLAs—so you can focus on creating and growing.

{/* Hero bullets */}
{heroBullets.map((b) => (
{b.title}
{b.body}
))}
{/* Primary CTAs */}
Provision a VPS Manage My Website Build My Website Deploy Minecraft
{/* Proof badges */}

+38% faster TTFB

after edge & cache tuning

DMARC p=reject

spoofing blocked in 48 hours

7m 12s restore

backup drill to full recovery

{/* --- SERVICES --- */}

Hosting & Development Services

Clear outcomes, flat pricing, and real SLAs—plus before/after proof on every engagement.

{services.map((card) => (

{card.title}

{card.body}

{card.cta}
))}
View all services
{/* --- HOW IT WORKS --- */}

From plan to live in days

Self-service provisioning or white-glove setup. We scope, set up, and verify—then hand you clear reporting and an SLA-backed care plan.

{[ { step: "1", title: "Plan", body: "Technical review and goals—or use the wizard to self-provision.", }, { step: "2", title: "Set up", body: "Provision VPS/hosting, deploy site or server, configure monitoring and backups.", }, { step: "3", title: "Verify", body: "Before/after metrics, restore test timer, and next-step plan you can share internally.", }, ].map((s) => (
Step {s.step}

{s.title}

{s.body}

))}
Get My Recommendation
{/* --- PRICING --- */}

Every plan includes monitoring, automated backups with restore verification, uptime & SSL watch, and a quarterly health summary.

{/* --- TESTIMONIALS --- */}
{/* --- FAQ --- */}
{/* --- CTA --- */}

Power, Performance & Peace of Mind — Managed for You.

Provision a VPS, manage your site, or deploy a Minecraft server—backed by real SLAs and restore-tested backups.

Provision a VPS Deploy Minecraft
); }