import { permanentRedirect } from "next/navigation";

import { createPageMetadata } from "@/lib/seo";

export const dynamic = "force-dynamic";
export const metadata = createPageMetadata({
  title: "Marloth Park Trip Finder",
  description: "Redirect to the MPC Trip Finder for Marloth Park visitor guide, stay and Kruger route planning help.",
  path: "/smart-calculator",
  image: "/images/heroes/plan-my-visit-hero.webp",
  keywords: [],
  noIndex: true,
})

export default function CalculatorRedirectPage() {
  permanentRedirect("/smart-calculator");
}
