import BeachDetailSection from "@/component/beaches/BeachDetailSection";
import { Metadata } from "next";
import React from "react";

export const metadata: Metadata = {
  title: "Beaches | Kearsleys - Travel & Tours",
  description:
    "Discover the sun-soaked splendor of East Africa’s coastal gems, where every destination offers a unique and captivating experience. Begin in Zanzibar, where the historic charm of Stone Town meets pristine beaches that invite you to unwind by the crystal-clear waters.",
  openGraph: {
    images: ["https://kearsleys.tz/image/secondSection/beach.webp"],
  },
};

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

export default page;
