import TrekkingDetailSection from "@/component/trekking/TrekkingDetailSection";
import { Metadata } from "next";

export const metadata: Metadata = {
  title: "Trekking | Kearsleys - Travel & Tours",
  description:
    "Embark on an exhilarating trekking adventure in Tanzania, where iconic peaks and rugged beauty await. Conquer the majestic Mount Kilimanjaro, explore the stunning slopes of Mount Meru, marvel at the active Oldonyo Lengai volcano, and discover the pristine Empakai Crater.",
  openGraph: {
    images: ["https://kearsleys.tz/image/secondSection/trekking.webp"],
  },
};

function page() {
  return (
    <main className="main-container">
      <TrekkingDetailSection />
    </main>
  );
}

export default page;
