export default function SHTaxInspiredWebsite() {
  const services = [
    {
      title: "Tax Preparation",
      description:
        "Reliable personal and business tax filing support tailored to your situation.",
      icon: "📄",
    },
    {
      title: "Business Services",
      description:
        "Bookkeeping, payroll, and practical support to help your business stay organized.",
      icon: "💼",
    },
    {
      title: "Professional Education",
      description:
        "Helpful resources and guidance for professionals who want to stay current.",
      icon: "🎓",
    },
  ];

  const highlights = [
    {
      title: "Why Choose Us",
      text: "With years of experience, our team helps individuals and businesses navigate taxes, planning, and operations with confidence.",
    },
    {
      title: "Who We Are",
      text: "We are dedicated professionals focused on clear communication, dependable service, and long-term client success.",
    },
    {
      title: "What We Do",
      text: "From tax preparation to bookkeeping and payroll, we provide practical year-round support.",
    },
  ];

  const testimonials = [
    {
      name: "Alex D.",
      quote:
        "Professional, responsive, and easy to work with. The process felt simple from start to finish.",
    },
    {
      name: "Amy J.",
      quote:
        "They helped me stay organized and answered every question clearly. I felt supported the whole way.",
    },
    {
      name: "Jordan K.",
      quote:
        "A great option for ongoing tax and business support, not just during tax season.",
    },
  ];

  return (
    <div className="min-h-screen bg-white text-slate-900">
      <header className="border-b border-slate-200 bg-white/95 backdrop-blur sticky top-0 z-50">
        <div className="mx-auto flex max-w-6xl items-center justify-between px-6 py-4">
          <div>
            <div className="text-2xl font-bold tracking-tight">SH Tax</div>
            <div className="text-xs text-slate-500">Year-round tax & business support</div>
          </div>

          <nav className="hidden gap-6 text-sm md:flex">
            <a href="#home" className="hover:text-slate-600">Home</a>
            <a href="#about" className="hover:text-slate-600">About</a>
            <a href="#services" className="hover:text-slate-600">Services</a>
            <a href="#testimonials" className="hover:text-slate-600">Testimonials</a>
            <a href="#contact" className="hover:text-slate-600">Contact</a>
          </nav>

          <a
            href="#contact"
}