import type { Metadata } from "next";
import HomePage from "@/components/HomePage";

export const metadata: Metadata = {
  title: "Tax Calculator Pakistan | Income Tax Calculator & FBR Tax Services",
  description:
    "Calculate your income tax in Pakistan with our accurate tax calculator. Expert tax consulting, filing services, and FBR compliance for salaried individuals and businesses.",
  keywords:
    "tax calculator Pakistan, income tax calculator, FBR tax, tax filing Pakistan, salaried tax calculator, business tax Pakistan, agricultural income tax, tax consultant Pakistan",
  authors: [{ name: "Navigate Business" }],
  creator: "Navigate Business",
  publisher: "Navigate Business",
  formatDetection: {
    email: false,
    address: false,
    telephone: false,
  },
  metadataBase: new URL("https://navigatebusinesses.com"),
  alternates: {
    canonical: "/",
  },
  openGraph: {
    type: "website",
    locale: "en_US",
    url: "https://navigatebusinesses.com",
    title: "Tax Calculator Pakistan | Income Tax Calculator & FBR Tax Services",
    description:
      "Calculate your income tax in Pakistan with our accurate tax calculator. Expert tax consulting, filing services, and FBR compliance.",
    siteName: "Navigate Business - Tax Calculator Pakistan",
    images: [
      {
        url: "/og-image.jpg",
        width: 1200,
        height: 630,
        alt: "Tax Calculator Pakistan - Navigate Business",
      },
    ],
  },
  twitter: {
    card: "summary_large_image",
    title: "Tax Calculator Pakistan | Income Tax Calculator & FBR Tax Services",
    description:
      "Calculate your income tax in Pakistan with our accurate tax calculator. Expert tax consulting, filing services, and FBR compliance.",
    images: ["/og-image.jpg"],
    creator: "@navigatebusiness",
  },
  robots: {
    index: true,
    follow: true,
    googleBot: {
      index: true,
      follow: true,
      "max-video-preview": -1,
      "max-image-preview": "large",
      "max-snippet": -1,
    },
  },
  verification: {
    google: "your-google-verification-code",
  },
};

export default function Home() {
  return <HomePage />;
}
